From a87effec057454da2edd2b886566af1478de1388 Mon Sep 17 00:00:00 2001 From: habib Date: Thu, 18 May 2023 15:35:48 +0100 Subject: [PATCH 1/8] Git 150 initial draft Tex render Signed-off-by: habib --- src/components/App/index.tsx | 41 +- .../HappiGraph/Tex/tex-inheritance.render.ts | 565 + .../Tex/tex-neighbourhood.render.ts | 565 + .../HappiGraph/happi-graph.component.tsx | 74 +- .../HappiGraph/happi-graph.helpers.ts | 7 + src/mockData.ts | 147244 ++++++++++++++- 6 files changed, 148452 insertions(+), 44 deletions(-) create mode 100644 src/components/HappiGraph/Tex/tex-inheritance.render.ts create mode 100644 src/components/HappiGraph/Tex/tex-neighbourhood.render.ts diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index 8d40b10..f50aa28 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -1,14 +1,17 @@ -import React from 'react'; +import React, { useState } 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 { Modal } from '@mantine/core'; const rawData = { ...mockData @@ -16,8 +19,11 @@ const rawData = { export function App() { + const [selectedNodeData, setSelectedNodeData] = useState(undefined); + const [opened, setOpened] = useState(false); + return <> -
+ {/*
} onNodeClick={(d: any) => console.log(d)} onGraphRender={() => { console.log('Graph rendered');}} /> +
*/} + +
+
+

TEx

+
+ + 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/tex-inheritance.render.ts b/src/components/HappiGraph/Tex/tex-inheritance.render.ts new file mode 100644 index 0000000..3d25619 --- /dev/null +++ b/src/components/HappiGraph/Tex/tex-inheritance.render.ts @@ -0,0 +1,565 @@ +import * as d3 from 'd3'; +import { iconsMap, linksTypeIconMap, itemGroupIconMap } from "@lfai/egeria-js-commons"; + +export const simpleSquareIcon = ``; + +export const addProperties = (nodeGroup: any) => { + nodeGroup.each(function (d: any) { + // @ts-ignore + d3.select(this) + .call(function (selection: any) { + if (d.properties) { + let labelHeight = 80; + let iconHeight = 80; + const PROPERTY_MAX_LENGTH = 20; + + for (const p of d.properties) { + const propertyGroup = selection.append('g').classed('property-group', true); + + const property = propertyGroup + .append('text') + .attr('transform', `translate(95, ${labelHeight})`) + .attr('data-text-length', p.value.length) + .attr('data-label-height', labelHeight) + .attr('data-value', p.value) + .classed('property', true) + .text(() => p.value.length > PROPERTY_MAX_LENGTH ? `${p.value.substring(0, PROPERTY_MAX_LENGTH)}...` : p.value); + + property + .on('mouseover', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > PROPERTY_MAX_LENGTH) { + const dataLabelHeight = parseInt(currentNode.attr('data-label-height')); + const value = currentNode.attr('data-value'); + + const fullPropertyBackground = d3.select(d.currentTarget.parentNode) + .append('rect') + .classed('full-property-background', true) + .attr('transform', `translate(70, ${dataLabelHeight - 40})`); + + const fullProperty: any = d3.select(d.currentTarget.parentNode) + .append('text') + .classed('full-property', true) + .attr('transform', `translate(78, ${dataLabelHeight - 32})`) + .text(() => value); + + const localBBox = fullProperty.node().getBBox(); + + fullPropertyBackground.attr('x', localBBox.x) + .attr('y', localBBox.y) + .attr('width', localBBox.width + 18) + .attr('height', localBBox.height + 16) + .attr('rx', 10) + .attr('ry', 10); + } + }) + .on('mouseout', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > 10) { + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property-background')[0]).remove(); + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property')[0]).remove(); + } + }); + + const icon = new DOMParser() + .parseFromString( + iconsMap[p.icon] ? iconsMap[p.icon] : iconsMap['simple-square'], + 'application/xml' + ) + .documentElement; + + // @ts-ignore: Object is possibly 'null'. + propertyGroup + .append('g') + .attr('transform', `translate(65, ${iconHeight - 15})`) + .classed('property-icon', true) + .node() + .append(icon); + + iconHeight = iconHeight + 30; + + labelHeight = labelHeight + 30; + } + } + }); + }); +}; + +export const addIcon = (nodeGroup: any, iconsMap: any) => { + nodeGroup + .append('path') + .attr('transform', `translate(20,17)`) + .attr('d', 'M40.5566 15.6865C41.4498 17.2335 41.4498 19.1395 40.5566 20.6865L32.9434 33.8731C32.0502 35.4201 30.3996 36.3731 28.6132 36.3731H13.3868C11.6004 36.3731 9.94979 35.4201 9.05662 33.8731L1.44338 20.6865C0.550212 19.1395 0.550212 17.2335 1.44338 15.6865L9.05662 2.5C9.94979 0.952994 11.6004 0 13.3868 0H28.6132C30.3996 0 32.0502 0.952995 32.9434 2.5L40.5566 15.6865Z') + .attr('fill', '#5C82EB'); + + nodeGroup.each(function (d: any) { + const icon = new DOMParser() + .parseFromString( + iconsMap[d.type] ? iconsMap[d.type] : simpleSquareIcon, + 'application/xml' + ) + .documentElement; + + // @ts-ignore: Object is possibly 'null'. + d3.select(this) + .append('g') + .attr('transform', `translate(31,25)`) + .node() + .append(icon); + }) +}; + +const isSelected = (nodeGroup: any) => { + nodeGroup + .append('path') + .classed('pin', true) + .attr('d', (d: any) => { + if (d.selected) { + return 'M7 2h10v2l-2 1v5l3 3v3h-5v4l-1 3l-1-3v-4H6v-3l3-3V5L7 4z'; + } else { + return ''; + } + }) + .attr('transform', (d: any) => { + const x = d.width - 25; + const y = 5; + + return `translate(${x} ${y}) rotate(30 0 0)`; + }); +}; + +const addHeader = (nodeGroup: any) => { + const header = nodeGroup + .append('g') + .classed('header', true); + + const textHeader = + header.append('text') + .attr('transform', `translate(70, 40)`) + .attr('data-text-length', (d: any) => { return d.value.length; }) + .attr('data-value', (d: any) => d.value) + .classed('value', true) + .text((d: any) => d.value.length > 18 ? `${d.value.substring(0, 18)}...` : d.value) + + textHeader + .on('mouseover', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > 18) { + const value = currentNode.attr('data-value'); + + const fullHeaderBackground = + d3.select(d.currentTarget.parentNode) + .append('rect') + .classed('full-header-background', true) + .attr('transform', `translate(20, -10)`) + .attr('rx', 10) + .attr('ry', 10); + + const fullHeader: any = + d3.select(d.currentTarget.parentNode) + .append('text') + .classed('full-header', true) + .attr('transform', `translate(30, 0)`) + .text(() => value); + + const localBBox = fullHeader.node().getBBox(); + + fullHeaderBackground + .attr('x', localBBox.x) + .attr('y', localBBox.y) + .attr('width', localBBox.width + 20) + .attr('height', localBBox.height + 20); + } + }) + .on('mouseout', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > 18) { + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-header-background')[0]).remove(); + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-header')[0]).remove(); + } + }); + + // header.append('text') + // .attr('transform', `translate(70, 50)`) + // .classed('label', true) + // .text((d: any) => d.label); +}; + +const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeClick?: any) => { + const _nodesGroup: any = nodesGroup + .selectAll() + .data(nodes) + .enter(); + + const nodeGroup = + _nodesGroup + .append('g') + .classed('node-group', false) + .attr('id', (d: any) => d.id) + .on('click', (d: any) => { onNodeClick ? onNodeClick(d.target.__data__) : console.log('ON_NODE_CLICK_NOT_IMPLEMENTED'); }) + .attr('transform', (d: any) => `translate(${d.x}, ${d.y})`) + .call( + d3.drag() + .on('start', (d: any) => { + console.log('DRAG_START', d); + }) + .on('drag', function(event: any, d: any) { + d.x = event.x; + + if(graphDirection !== 'VERTICAL') { + d.y = event.y; + } + + // @ts-ignore + d3.select(this) + .attr('transform', `translate(${d.x}, ${d.y})`); + + const _links: any = + d3.selectAll('.links-group') + .selectAll('line'); + + _links + .filter(function(_d: any) { + return _d.from.id === d.id; + }) + .attr('x1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.x; + }) + .attr('y1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.y; + }) + .attr('x2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.x; + }) + .attr('y2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.y; + }); + + _links + .filter(function(_d: any) { + return _d.to.id === d.id; + }) + .attr('x1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.x; + }) + .attr('y1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.y; + }) + .attr('x2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.x; + }) + .attr('y2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.y; + }); + }) + .on('end', (d: any) => { + console.log('DRAG_END', d); + }) + ); + + nodeGroup + .append('rect') + .attr('width', (d: any) => d.width) + .attr('height', (d: any) => d.height) + .classed('node', true) + .classed('is-selected', (d: any) => d.selected) + .attr('rx', 20) + .attr('ry', 20); + + isSelected(nodeGroup); + addHeader(nodeGroup); + addIcon(nodeGroup, iconsMap); + addProperties(nodeGroup); +}; + + +const centerToCoordinates = function (data: any, scaledBy: any, svg: any, zoom: any, callback: any) { + const { x, y, width, height } = data; + + const svgWidth = parseInt(svg.style('width')); + const svgHeight = parseInt(svg.style('height')); + + const svgCenter = { + x: svgWidth / 2, + y: svgHeight / 2 + }; + + svg.transition() + .call( + zoom.transform, + d3.zoomIdentity + .translate( + svgCenter.x - ((x * scaledBy) + (width * scaledBy) / 2), + svgCenter.y - ((y * scaledBy) + (height * scaledBy) / 2) + ) + .scale(scaledBy) + ).on('end', () => { + callback(); + }); +} + +const initCenterGraph = (allGroup: any, svg: any, zoom: any, callback: any) => { + centerGraph(allGroup, svg, zoom, callback); +} + +const centerGraph = (allGroup: any, svg: any, zoom: any, callback?: any) => { + const graphBBox = allGroup.node().getBBox(); + + const svgWidth = parseInt(svg.style('width')); + const svgHeight = parseInt(svg.style('height')); + + const data = { + x: graphBBox.x, + y: graphBBox.y, + width: graphBBox.width, + height: graphBBox.height + }; + + const scaledBy = Math.min( + (svgWidth - 100) / graphBBox.width, + (svgHeight - 100) / graphBBox.height, + 1 + ); + + centerToCoordinates(data, scaledBy, svg, zoom, callback || (() => { console.log('CENTERED')})); +} + +const customZoom = (value: number, zoom: any, svg: any) => { + if (value > 0) { + zoom.scaleBy(svg.transition(), 1.3); + } else { + zoom.scaleBy(svg.transition(), 0.7); + } +}; + +const customZoomIn = (zoom: any, svg: any) => { + customZoom(1, zoom, svg); +}; + +const customZoomOut = (zoom: any, svg: any) => { + customZoom(-1, zoom, svg); +}; + +export const relativeTo = (nodeA: any, nodeB: any, graphDirection: string) => { + const a = { + x1: nodeA.x, + y1: nodeA.y, + x2: nodeA.x + nodeA.width, + y2: nodeA.y + nodeA.height + }; + + const b = { + x1: nodeB.x, + y1: nodeB.y, + x2: nodeB.x + nodeB.width, + y2: nodeB.y + nodeB.height + }; + + if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'RIGHT', b: 'LEFT' }; + } + + if((a.x1 < b.x2) && !(a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { + return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'RIGHT', b: 'LEFT' }; + } + + if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { + return { a: 'RIGHT', b: 'LEFT' }; + } + + if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { + return { a: 'BOTTOM', b: 'TOP' }; + } + + if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { + return { a: 'LEFT', b: 'RIGHT' }; + } + + if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'LEFT', b: 'RIGHT' }; + } + + if(!(a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { + return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'LEFT', b: 'RIGHT' }; + } + + if((a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'TOP', b: 'BOTTOM' }; + } + + if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'RIGHT', b: 'RIGHT' }; + } + + return null; +}; + +export const getNodeAnchorPoint = (node: any, point: any) => { + const { width, height } = node; + + switch(point) { + case 'TOP': + return { x: node.x + (width / 2), y: node.y }; + case 'BOTTOM': + return { x: node.x + (width / 2), y: node.y + height }; + case 'LEFT': + return { x: node.x, y: node.y + (height / 2)}; + case 'RIGHT': + return { x: node.x + width, y: node.y + (height / 2)}; + default: + console.log('WRONG_ANCHOR_POINT_SELECTED'); + return null; + } +}; + +export const getLinkCoordinates = (nodeA: any, nodeB: any, graphDirection: string) => { + const _relativeTo: any = relativeTo(nodeA, nodeB, graphDirection); + + + const from: any = getNodeAnchorPoint(nodeA, _relativeTo.a); + const to: any = getNodeAnchorPoint(nodeB, _relativeTo.b); + + return { + from: { x: from.x, y: from.y }, + to: { x: to.x, y: to.y } + }; +}; + +const addLinks = (links: any, linksGroup: any, graphDirection: string, nodes: any) => { + const _linksGroup = linksGroup.selectAll() + .data(links) + .enter(); + + _linksGroup + .append('line') + .classed('link', true) + .attr('label', (d: any) => { + return d.label; + }) + .attr('stroke-dasharray', (d: any) => { + return linksTypeIconMap[d.type] ? linksTypeIconMap[d.type].strokeDashArray : null; + }) + .attr('marker-start', (d: any) => (d.connectionFrom) ? 'url(#arrow-start)' : null) + .attr('marker-end', (d: any) => (d.connectionTo) ? 'url(#arrow-end)' : null) + .attr('from', function(d: any) { return d.from.id; }) + .attr('to', function(d: any) { return d.to.id; }) + .attr('x1', (d: any) => { + const { from } = getLinkCoordinates(d.from, d.to, graphDirection); + + return from.x; + }) + .attr('y1', (d: any) => { + const { from } = getLinkCoordinates(d.from, d.to, graphDirection); + + return from.y; + }) + .attr('x2', (d: any) => { + const { to } = getLinkCoordinates(d.from, d.to, graphDirection); + + return to.x; + }) + .attr('y2', (d: any) => { + const { to } = getLinkCoordinates(d.from, d.to, graphDirection); + + return to.y; + }) + .on('mouseover', function(d: any) { + let position = d.currentTarget.ownerSVGElement.createSVGPoint(); + + position.x = d.x; + position.y = d.y; + + position = position.matrixTransform(d.currentTarget.getScreenCTM().inverse()); + + const linkLabel = d.currentTarget.attributes.label.value; + const sourceLabel = nodes.filter((n: any) => n.id === d.currentTarget.attributes.from.value ).pop().value; + const targetLabel = nodes.filter((n: any) => n.id === d.currentTarget.attributes.to.value ).pop().value; + + const textBackground = + d3.select(d.currentTarget.parentNode) + .append('rect') + .classed('link-popup-box', true) + .attr('transform', `translate(20, -10)`) + .style("fill", "#ffffff") + .style("stroke", "#cccccc") + .attr('rx', 10) + .attr('ry', 10); + + const text: any = + d3.select(d.currentTarget.parentNode) + .append('text') + .classed('link-popup-text', true) + .attr('transform', `translate(30, 0)`) + .attr('x', position.x + 10) + .attr('y', position.y + 10) + .text(() => `${sourceLabel} :: ${linkLabel} :: ${targetLabel}`); + + const bBox: any = text.node().getBBox(); + + textBackground + .attr('x', bBox.x) + .attr('y', bBox.y) + .attr('height', bBox.height + 20) + .attr('width', bBox.width + 20); + }) + .on('mouseout', (d: any) => { + d.currentTarget.parentNode.getElementsByClassName('link-popup-box')[0].remove(); + d.currentTarget.parentNode.getElementsByClassName('link-popup-text')[0].remove(); + }) + .on('click', (d: any) => { + const clicked = d3.select(d.currentTarget); + + if (clicked.classed('link-clicked')) { + clicked + .attr('marker-start', (d: any) => (d.connectionFrom) ? 'url(#arrow-start)' : null) + .attr('marker-end', (d: any) => (d.connectionTo) ? 'url(#arrow-end)' : null) + .classed('link-clicked', false); + } else { + clicked + .attr('marker-start', (d: any) => (d.connectionFrom) ? 'url(#arrow-start-selected)' : null) + .attr('marker-end', (d: any) => (d.connectionTo) ? 'url(#arrow-end-selected)' : null) + .classed('link-clicked', true); + } + }) +} + +export { + addNodes, + addLinks, + centerGraph, + initCenterGraph, + customZoom, + customZoomIn, + customZoomOut, + linksTypeIconMap, + iconsMap, + itemGroupIconMap +} diff --git a/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts b/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts new file mode 100644 index 0000000..50b26bc --- /dev/null +++ b/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts @@ -0,0 +1,565 @@ +import * as d3 from 'd3'; +import { iconsMap, linksTypeIconMap, itemGroupIconMap } from "@lfai/egeria-js-commons"; + +export const simpleSquareIcon = ``; + +export const addProperties = (nodeGroup: any) => { + nodeGroup.each(function (d: any) { + // @ts-ignore + d3.select(this) + .call(function (selection: any) { + if (d.properties) { + let labelHeight = 80; + let iconHeight = 80; + const PROPERTY_MAX_LENGTH = 20; + + for (const p of d.properties) { + const propertyGroup = selection.append('g').classed('property-group', true); + + const property = propertyGroup + .append('text') + .attr('transform', `translate(95, ${labelHeight})`) + .attr('data-text-length', p.value.length) + .attr('data-label-height', labelHeight) + .attr('data-value', p.value) + .classed('property', true) + .text(() => p.value.length > PROPERTY_MAX_LENGTH ? `${p.value.substring(0, PROPERTY_MAX_LENGTH)}...` : p.value); + + property + .on('mouseover', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > PROPERTY_MAX_LENGTH) { + const dataLabelHeight = parseInt(currentNode.attr('data-label-height')); + const value = currentNode.attr('data-value'); + + const fullPropertyBackground = d3.select(d.currentTarget.parentNode) + .append('rect') + .classed('full-property-background', true) + .attr('transform', `translate(70, ${dataLabelHeight - 40})`); + + const fullProperty: any = d3.select(d.currentTarget.parentNode) + .append('text') + .classed('full-property', true) + .attr('transform', `translate(78, ${dataLabelHeight - 32})`) + .text(() => value); + + const localBBox = fullProperty.node().getBBox(); + + fullPropertyBackground.attr('x', localBBox.x) + .attr('y', localBBox.y) + .attr('width', localBBox.width + 18) + .attr('height', localBBox.height + 16) + .attr('rx', 10) + .attr('ry', 10); + } + }) + .on('mouseout', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > 10) { + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property-background')[0]).remove(); + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property')[0]).remove(); + } + }); + + const icon = new DOMParser() + .parseFromString( + iconsMap[p.icon] ? iconsMap[p.icon] : iconsMap['simple-square'], + 'application/xml' + ) + .documentElement; + + // @ts-ignore: Object is possibly 'null'. + propertyGroup + .append('g') + .attr('transform', `translate(65, ${iconHeight - 15})`) + .classed('property-icon', true) + .node() + .append(icon); + + iconHeight = iconHeight + 30; + + labelHeight = labelHeight + 30; + } + } + }); + }); +}; + +export const addIcon = (nodeGroup: any, iconsMap: any) => { + nodeGroup + .append('path') + .attr('transform', `translate(20,17)`) + .attr('d', 'M40.5566 15.6865C41.4498 17.2335 41.4498 19.1395 40.5566 20.6865L32.9434 33.8731C32.0502 35.4201 30.3996 36.3731 28.6132 36.3731H13.3868C11.6004 36.3731 9.94979 35.4201 9.05662 33.8731L1.44338 20.6865C0.550212 19.1395 0.550212 17.2335 1.44338 15.6865L9.05662 2.5C9.94979 0.952994 11.6004 0 13.3868 0H28.6132C30.3996 0 32.0502 0.952995 32.9434 2.5L40.5566 15.6865Z') + .attr('fill', '#5C82EB'); + + nodeGroup.each(function (d: any) { + const icon = new DOMParser() + .parseFromString( + iconsMap[d.type] ? iconsMap[d.type] : simpleSquareIcon, + 'application/xml' + ) + .documentElement; + + // @ts-ignore: Object is possibly 'null'. + d3.select(this) + .append('g') + .attr('transform', `translate(31,25)`) + .node() + .append(icon); + }) +}; + +const isSelected = (nodeGroup: any) => { + nodeGroup + .append('path') + .classed('pin', true) + .attr('d', (d: any) => { + if (d.selected) { + return 'M7 2h10v2l-2 1v5l3 3v3h-5v4l-1 3l-1-3v-4H6v-3l3-3V5L7 4z'; + } else { + return ''; + } + }) + .attr('transform', (d: any) => { + const x = d.width - 25; + const y = 5; + + return `translate(${x} ${y}) rotate(30 0 0)`; + }); +}; + +const addHeader = (nodeGroup: any) => { + const header = nodeGroup + .append('g') + .classed('header', true); + + const textHeader = + header.append('text') + .attr('transform', `translate(70, 30)`) + .attr('data-text-length', (d: any) => { return d.value.length; }) + .attr('data-value', (d: any) => d.value) + .classed('value', true) + .text((d: any) => d.value.length > 18 ? `${d.value.substring(0, 18)}...` : d.value) + + textHeader + .on('mouseover', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > 18) { + const value = currentNode.attr('data-value'); + + const fullHeaderBackground = + d3.select(d.currentTarget.parentNode) + .append('rect') + .classed('full-header-background', true) + .attr('transform', `translate(20, -10)`) + .attr('rx', 10) + .attr('ry', 10); + + const fullHeader: any = + d3.select(d.currentTarget.parentNode) + .append('text') + .classed('full-header', true) + .attr('transform', `translate(30, 0)`) + .text(() => value); + + const localBBox = fullHeader.node().getBBox(); + + fullHeaderBackground + .attr('x', localBBox.x) + .attr('y', localBBox.y) + .attr('width', localBBox.width + 20) + .attr('height', localBBox.height + 20); + } + }) + .on('mouseout', function (d: any) { + const currentNode = d3.select(d.currentTarget); + + const textLength = parseInt(currentNode.attr('data-text-length')); + + if(textLength > 18) { + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-header-background')[0]).remove(); + d3.select(d.currentTarget.parentNode.getElementsByClassName('full-header')[0]).remove(); + } + }); + + header.append('text') + .attr('transform', `translate(70, 50)`) + .classed('label', true) + .text((d: any) => d.label); +}; + +const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeClick?: any) => { + const _nodesGroup: any = nodesGroup + .selectAll() + .data(nodes) + .enter(); + + const nodeGroup = + _nodesGroup + .append('g') + .classed('node-group', true) + .attr('id', (d: any) => d.id) + .on('click', (d: any) => { onNodeClick ? onNodeClick(d.target.__data__) : console.log('ON_NODE_CLICK_NOT_IMPLEMENTED'); }) + .attr('transform', (d: any) => `translate(${d.x}, ${d.y})`) + .call( + d3.drag() + .on('start', (d: any) => { + console.log('DRAG_START', d); + }) + .on('drag', function(event: any, d: any) { + d.x = event.x; + + if(graphDirection !== 'VERTICAL') { + d.y = event.y; + } + + // @ts-ignore + d3.select(this) + .attr('transform', `translate(${d.x}, ${d.y})`); + + const _links: any = + d3.selectAll('.links-group') + .selectAll('line'); + + _links + .filter(function(_d: any) { + return _d.from.id === d.id; + }) + .attr('x1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.x; + }) + .attr('y1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.y; + }) + .attr('x2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.x; + }) + .attr('y2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.y; + }); + + _links + .filter(function(_d: any) { + return _d.to.id === d.id; + }) + .attr('x1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.x; + }) + .attr('y1', (_d: any) => { + const { from/*, to*/ } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return from.y; + }) + .attr('x2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.x; + }) + .attr('y2', (_d: any) => { + const { /*from,*/ to } = getLinkCoordinates(_d.from, _d.to, graphDirection); + + return to.y; + }); + }) + .on('end', (d: any) => { + console.log('DRAG_END', d); + }) + ); + + nodeGroup + .append('rect') + .attr('width', (d: any) => d.width) + .attr('height', (d: any) => d.height) + .classed('node', true) + .classed('is-selected', (d: any) => d.selected) + .attr('rx', 20) + .attr('ry', 20); + + isSelected(nodeGroup); + addHeader(nodeGroup); + addIcon(nodeGroup, iconsMap); + addProperties(nodeGroup); +}; + + +const centerToCoordinates = function (data: any, scaledBy: any, svg: any, zoom: any, callback: any) { + const { x, y, width, height } = data; + + const svgWidth = parseInt(svg.style('width')); + const svgHeight = parseInt(svg.style('height')); + + const svgCenter = { + x: svgWidth / 2, + y: svgHeight / 2 + }; + + svg.transition() + .call( + zoom.transform, + d3.zoomIdentity + .translate( + svgCenter.x - ((x * scaledBy) + (width * scaledBy) / 2), + svgCenter.y - ((y * scaledBy) + (height * scaledBy) / 2) + ) + .scale(scaledBy) + ).on('end', () => { + callback(); + }); +} + +const initCenterGraph = (allGroup: any, svg: any, zoom: any, callback: any) => { + centerGraph(allGroup, svg, zoom, callback); +} + +const centerGraph = (allGroup: any, svg: any, zoom: any, callback?: any) => { + const graphBBox = allGroup.node().getBBox(); + + const svgWidth = parseInt(svg.style('width')); + const svgHeight = parseInt(svg.style('height')); + + const data = { + x: graphBBox.x, + y: graphBBox.y, + width: graphBBox.width, + height: graphBBox.height + }; + + const scaledBy = Math.min( + (svgWidth - 100) / graphBBox.width, + (svgHeight - 100) / graphBBox.height, + 1 + ); + + centerToCoordinates(data, scaledBy, svg, zoom, callback || (() => { console.log('CENTERED')})); +} + +const customZoom = (value: number, zoom: any, svg: any) => { + if (value > 0) { + zoom.scaleBy(svg.transition(), 1.3); + } else { + zoom.scaleBy(svg.transition(), 0.7); + } +}; + +const customZoomIn = (zoom: any, svg: any) => { + customZoom(1, zoom, svg); +}; + +const customZoomOut = (zoom: any, svg: any) => { + customZoom(-1, zoom, svg); +}; + +export const relativeTo = (nodeA: any, nodeB: any, graphDirection: string) => { + const a = { + x1: nodeA.x, + y1: nodeA.y, + x2: nodeA.x + nodeA.width, + y2: nodeA.y + nodeA.height + }; + + const b = { + x1: nodeB.x, + y1: nodeB.y, + x2: nodeB.x + nodeB.width, + y2: nodeB.y + nodeB.height + }; + + if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'RIGHT', b: 'LEFT' }; + } + + if((a.x1 < b.x2) && !(a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { + return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'RIGHT', b: 'LEFT' }; + } + + if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { + return { a: 'RIGHT', b: 'LEFT' }; + } + + if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { + return { a: 'BOTTOM', b: 'TOP' }; + } + + if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { + return { a: 'LEFT', b: 'RIGHT' }; + } + + if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'LEFT', b: 'RIGHT' }; + } + + if(!(a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { + return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'LEFT', b: 'RIGHT' }; + } + + if((a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'TOP', b: 'BOTTOM' }; + } + + if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { + return { a: 'RIGHT', b: 'RIGHT' }; + } + + return null; +}; + +export const getNodeAnchorPoint = (node: any, point: any) => { + const { width, height } = node; + + switch(point) { + case 'TOP': + return { x: node.x + (width / 2), y: node.y }; + case 'BOTTOM': + return { x: node.x + (width / 2), y: node.y + height }; + case 'LEFT': + return { x: node.x, y: node.y + (height / 2)}; + case 'RIGHT': + return { x: node.x + width, y: node.y + (height / 2)}; + default: + console.log('WRONG_ANCHOR_POINT_SELECTED'); + return null; + } +}; + +export const getLinkCoordinates = (nodeA: any, nodeB: any, graphDirection: string) => { + const _relativeTo: any = relativeTo(nodeA, nodeB, graphDirection); + + + const from: any = getNodeAnchorPoint(nodeA, _relativeTo.a); + const to: any = getNodeAnchorPoint(nodeB, _relativeTo.b); + + return { + from: { x: from.x, y: from.y }, + to: { x: to.x, y: to.y } + }; +}; + +const addLinks = (links: any, linksGroup: any, graphDirection: string, nodes: any) => { + const _linksGroup = linksGroup.selectAll() + .data(links) + .enter(); + + _linksGroup + .append('line') + .classed('link', true) + .attr('label', (d: any) => { + return d.label; + }) + .attr('stroke-dasharray', (d: any) => { + return linksTypeIconMap[d.type] ? linksTypeIconMap[d.type].strokeDashArray : null; + }) + .attr('marker-start', (d: any) => (d.connectionFrom) ? 'url(#arrow-start)' : null) + .attr('marker-end', (d: any) => (d.connectionTo) ? 'url(#arrow-end)' : null) + .attr('from', function(d: any) { return d.from.id; }) + .attr('to', function(d: any) { return d.to.id; }) + .attr('x1', (d: any) => { + const { from } = getLinkCoordinates(d.from, d.to, graphDirection); + + return from.x; + }) + .attr('y1', (d: any) => { + const { from } = getLinkCoordinates(d.from, d.to, graphDirection); + + return from.y; + }) + .attr('x2', (d: any) => { + const { to } = getLinkCoordinates(d.from, d.to, graphDirection); + + return to.x; + }) + .attr('y2', (d: any) => { + const { to } = getLinkCoordinates(d.from, d.to, graphDirection); + + return to.y; + }) + .on('mouseover', function(d: any) { + let position = d.currentTarget.ownerSVGElement.createSVGPoint(); + + position.x = d.x; + position.y = d.y; + + position = position.matrixTransform(d.currentTarget.getScreenCTM().inverse()); + + const linkLabel = d.currentTarget.attributes.label.value; + const sourceLabel = nodes.filter((n: any) => n.id === d.currentTarget.attributes.from.value ).pop().value; + const targetLabel = nodes.filter((n: any) => n.id === d.currentTarget.attributes.to.value ).pop().value; + + const textBackground = + d3.select(d.currentTarget.parentNode) + .append('rect') + .classed('link-popup-box', true) + .attr('transform', `translate(20, -10)`) + .style("fill", "#ffffff") + .style("stroke", "#cccccc") + .attr('rx', 10) + .attr('ry', 10); + + const text: any = + d3.select(d.currentTarget.parentNode) + .append('text') + .classed('link-popup-text', true) + .attr('transform', `translate(30, 0)`) + .attr('x', position.x + 10) + .attr('y', position.y + 10) + .text(() => `${sourceLabel} :: ${linkLabel} :: ${targetLabel}`); + + const bBox: any = text.node().getBBox(); + + textBackground + .attr('x', bBox.x) + .attr('y', bBox.y) + .attr('height', bBox.height + 20) + .attr('width', bBox.width + 20); + }) + .on('mouseout', (d: any) => { + d.currentTarget.parentNode.getElementsByClassName('link-popup-box')[0].remove(); + d.currentTarget.parentNode.getElementsByClassName('link-popup-text')[0].remove(); + }) + .on('click', (d: any) => { + const clicked = d3.select(d.currentTarget); + + if (clicked.classed('link-clicked')) { + clicked + .attr('marker-start', (d: any) => (d.connectionFrom) ? 'url(#arrow-start)' : null) + .attr('marker-end', (d: any) => (d.connectionTo) ? 'url(#arrow-end)' : null) + .classed('link-clicked', false); + } else { + clicked + .attr('marker-start', (d: any) => (d.connectionFrom) ? 'url(#arrow-start-selected)' : null) + .attr('marker-end', (d: any) => (d.connectionTo) ? 'url(#arrow-end-selected)' : null) + .classed('link-clicked', true); + } + }) +} + +export { + addNodes, + addLinks, + centerGraph, + initCenterGraph, + customZoom, + customZoomIn, + customZoomOut, + linksTypeIconMap, + iconsMap, + itemGroupIconMap +} diff --git a/src/components/HappiGraph/happi-graph.component.tsx b/src/components/HappiGraph/happi-graph.component.tsx index 8187052..1fca18a 100644 --- a/src/components/HappiGraph/happi-graph.component.tsx +++ b/src/components/HappiGraph/happi-graph.component.tsx @@ -1,9 +1,11 @@ import React from "react"; import * as d3 from "d3"; // import "./happi-graph.scss"; -import { mapLinks, mapNodes } from "./happi-graph.helpers"; +import { GraphType, mapLinks, mapNodes } from "./happi-graph.helpers"; import { elkApproach, visApproach } from "./happi-graph.algorithms"; -import { addLinks, addNodes, centerGraph, customZoomIn, customZoomOut, initCenterGraph } from "./happi-graph.render"; +import * as LineageRender from "./happi-graph.render"; +import * as TexInheritanceRender from "./Tex/tex-inheritance.render"; +import * as TexNeighbourhoodRender from "./Tex/tex-inheritance.render"; import HappiGraphLegend from "./happi-graph-legend.component"; import { ActionIcon } from '@mantine/core'; @@ -32,6 +34,7 @@ interface Props { nodeDistanceY?: number; printMode?: boolean; onGraphRender?: any; + graphType: number; } interface State { @@ -52,15 +55,42 @@ interface State { allGroup: any; isFullscreen: boolean; printMode: boolean; + + addLinks: any; + addNodes: any; + centerGraph: any; + customZoomIn: any; + customZoomOut: any; + initCenterGraph: any; + graphType: number; + } + class HappiGraph extends React.Component { constructor(props: Props) { super(props); - + console.log("HAPPI-GRAPH Init"); const mappedNodes = mapNodes(props.rawData.nodes, props.selectedNodeId); const mappedLinks = mapLinks(props.rawData.edges, mappedNodes); - + let selectedGraphType; + switch(props.graphType) { + case GraphType.LINEAGE: { + selectedGraphType=LineageRender; + break; + } + case GraphType.TEX_INHERITANCE: { + selectedGraphType=TexInheritanceRender; + break; + } + case GraphType.TEX_NEIGHBOURHOOD: { + selectedGraphType=TexNeighbourhoodRender; + break; + } + default: + selectedGraphType=LineageRender + console.log('GRAPH_TYPE_NOT_SELECTED'); + } this.state = { algorithm: props.algorithm ? props.algorithm : 'ELK', rawData: { ...props.rawData }, @@ -70,16 +100,25 @@ class HappiGraph extends React.Component { isLoading: true, links: [...mappedLinks], nodeCountLimit: props.nodeCountLimit ? props.nodeCountLimit : 0, - nodeDistanceX: props.nodeDistanceX ? props.nodeDistanceX : 350, - nodeDistanceY: props.nodeDistanceY ? props.nodeDistanceY : 350, + nodeDistanceX: props.nodeDistanceX ? props.nodeDistanceX : 100, + nodeDistanceY: props.nodeDistanceY ? props.nodeDistanceY : 400, nodes: [...mappedNodes], selectedNodeId: props.selectedNodeId, svg: null, zoom: null, allGroup: null, isFullscreen: false, - printMode: props.printMode ? true : false + printMode: props.printMode ? true : false, + addLinks: selectedGraphType.addLinks, + addNodes: selectedGraphType.addNodes, + centerGraph: selectedGraphType.centerGraph, + customZoomIn: selectedGraphType.customZoomIn, + customZoomOut: selectedGraphType.customZoomOut, + initCenterGraph: selectedGraphType.initCenterGraph, + graphType: props.graphType }; + + } selectAlgorithm(callback: any) { @@ -128,6 +167,9 @@ class HappiGraph extends React.Component { nodes: finalNodes, links: finalLinks } = visApproach(nodes, links, graphDirection, nodeDistanceX, nodeDistanceY); + console.log("habib"); + console.log(nodes); + this.setState({ isLoading: false, @@ -173,7 +215,7 @@ class HappiGraph extends React.Component { const { debug } = this.state; debug && console.log('init()'); - const { svg, nodes, links, graphDirection } = this.state; + const { svg, nodes, links, graphDirection, graphType } = this.state; const allGroup = svg.append('g') @@ -199,14 +241,14 @@ class HappiGraph extends React.Component { const { zoom } = this.state; const { onNodeClick } = this.props; - svg + svg .call(zoom) .on('dblclick.zoom', null); - addNodes(nodes, nodesGroup, graphDirection, onNodeClick); - addLinks(links, linksGroup, graphDirection, nodes); + this.state.addNodes(nodes, nodesGroup, graphDirection, onNodeClick); + TexInheritanceRender.addLinks(links, linksGroup, graphDirection, nodes); - initCenterGraph(allGroup, svg, zoom, callback); + this.state.initCenterGraph(allGroup, svg, zoom, callback); }); } @@ -221,7 +263,7 @@ class HappiGraph extends React.Component { svg, zoom } = this.state; - centerGraph(allGroup, svg, zoom); + this.state.centerGraph(allGroup, svg, zoom); }); } @@ -292,15 +334,15 @@ class HappiGraph extends React.Component { { !printMode && <>
- customZoomIn(zoom, svg) } /> + this.state.customZoomIn(zoom, svg) } /> - customZoomOut(zoom, svg) } /> + this.state.customZoomOut(zoom, svg) } /> - centerGraph(allGroup, svg, zoom) } /> + this.state.centerGraph(allGroup, svg, zoom) } /> diff --git a/src/components/HappiGraph/happi-graph.helpers.ts b/src/components/HappiGraph/happi-graph.helpers.ts index a948599..961a0e2 100644 --- a/src/components/HappiGraph/happi-graph.helpers.ts +++ b/src/components/HappiGraph/happi-graph.helpers.ts @@ -1,5 +1,11 @@ import { itemGroupIconMap } from '@lfai/egeria-js-commons'; +enum GraphType { + LINEAGE, + TEX_INHERITANCE, + TEX_NEIGHBOURHOOD +} + const getNodeHeight = (length: number) => { const defaultHeight = 70; @@ -62,6 +68,7 @@ const mapLinks = (links: any, nodes: any) => { }; export { + GraphType, mapNodes, mapLinks } diff --git a/src/mockData.ts b/src/mockData.ts index d6f6a34..a7f20e1 100644 --- a/src/mockData.ts +++ b/src/mockData.ts @@ -1,27 +1,147221 @@ +// export const mockData = { +// nodes:[ +// {"id":"1","label":"Node 1","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Relational Table::(database_column)=Database Column"}, +// {"id":"2","label":"Node 2","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, +// {"id":"3","label":"Node 3","group":"RelationalTable","properties":{"schema":"Schema","database":"Database"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table"}, +// {"id":"4","label":"Node 4","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table::(database_column)=Database Column"}, +// {"id":"5","label":"Node 5","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, +// {"id":"6","label":"Node 6","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category"}, +// {"id":"7","label":"Node 7","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Database Schema::(database_table)=Database Table::(database_column)=Database Column"}, +// {"id":"8","label":"Node 8","group":"GlossaryTerm","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Glossary::(category)=TEST::(term)=test_egeria"}, +// {"id":"9","label":"Node 9","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data file Field"}, +// {"id":"10","label":"Node 10","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data File Field"}, +// {"id":"11","label":"Node 11","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category::(category)=Category"} +// ], +// edges:[ +// {"id":"4-8","from":"8","to":"4","label":"SemanticAssignment","type":null}, +// {"id":"7-8","from":"8","to":"7","label":"SemanticAssignment","type":null}, +// {"id":"1-8","from":"8","to":"1","label":"SemanticAssignment","type":null}, +// {"id":"8-11","from":"8","to":"11","label":"TermCategorization","type":"ReferencingCategory"}, +// {"id":"8-2","from":"8","to":"2","label":"TermCategorization","type":"ReferencingCategory"}, +// {"id":"3-8","from":"8","to":"3","label":"SemanticAssignment","type":null}, +// {"id":"8-6","from":"8","to":"6","label":"TermCategorization","type":"ReferencingCategory"}, +// {"id":"10-8","from":"8","to":"10","label":"SemanticAssignment","type":null}, +// {"id":"9-8","from":"8","to":"9","label":"SemanticAssignment","type":null}, +// {"id":"8-5","from":"8","to":"5","label":"TermCategorization","type":"PrimaryCategory"} +// ] +// }; + +const data: 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", + "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", + "Certification" + ], + "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" + ] + }, + "UserViewService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1f83fc7c-75bb-491d-980d-ff9a6f80ae02", + "name": "UserViewService", + "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 user interfaces access to digital resources.", + "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" + ] + }, + "DigitalService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "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 business function implemented using IT.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "DRAFT", + "PREPARED", + "PROPOSED", + "APPROVED", + "REJECTED", + "APPROVED_CONCEPT", + "UNDER_DEVELOPMENT", + "DEVELOPMENT_COMPLETE", + "APPROVED_FOR_DEPLOYMENT", + "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 digital service.", + "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 digital service.", + "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 component.", + "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": [ + "DigitalServiceOperator", + "DigitalServiceDependency", + "DigitalServiceDependency", + "DigitalServiceProduct", + "DigitalSupport", + "DigitalServiceDesign", + "DigitalServiceManagement" + ], + "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" + ] + }, + "DataSet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "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": "Collection of related 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": "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 + } + ] + }, + "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": [ + "DataFileCollection", + "ReferenceCodeMappingTable", + "Form", + "DeployedReport", + "MetadataCollection", + "DeployedDatabaseSchema", + "KeyStoreCollection", + "ReferenceCodeTable", + "MediaCollection", + "TableDataSet", + "Topic", + "InformationView", + "SubscriberList" + ], + "classificationNames": [ + "GovernanceMeasurementsResultsDataSet" + ], + "relationshipNames": [ + "DataContentForDataSet", + "GovernanceResults" + ], + "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" + ] + }, + "MapSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "name": "MapSchemaType", + "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 for a map between a key and value.", + "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": [ + "MapToElementType", + "MapFromElementType" + ], + "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" + ] + }, + "TranslationDetail": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d7df0579-8671-48f0-a8aa-38a487d418c8", + "name": "TranslationDetail", + "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 collection of translated properties.", + "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": "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": "Translation of the name or displayName property.", + "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": "Translation of the description property.", + "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": "Language for the translation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "additionalTranslations", + "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": "Translations of other string properties found in the linked entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "locale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Locale for the translation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "languageCode", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for identifying the language - for example from ISO-639.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "TranslationLink" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "DataProcessingDescription": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "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": "Name of the data processing description.", + "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 data processing description.", + "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": [ + "DataProcessingSpecification", + "DetailedProcessingActions", + "PermittedProcessing" + ], + "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" + ] + }, + "GovernanceActionService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9", + "name": "GovernanceActionService", + "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 that conforms to the Governance Action Framework (GAF).", + "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": "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" + ] + }, + "DocumentStore": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "37156790-feac-4e1a-a42e-88858ae6f8e1", + "name": "DocumentStore", + "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": "Identifies a data store as one that contains documents.", + "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" + ] + }, + "StorageVolume": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "14145458-f0d0-4955-8899-b8a2874708c9", + "name": "StorageVolume", + "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 persistent storage volume.", + "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": [], + "classificationNames": [], + "relationshipNames": [ + "AttachedStorage" + ], + "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" + ] + }, + "ExternalReference": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A link to an external reference source such as a web page, article or book.", + "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": "pageRange", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "copyright", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Copyright statement associated with this external source.", + "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 to use when displaying reference in a list.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationNumbers", + "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", + "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 external source. For example, its significance and use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "edition", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 edition for this external source.", + "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": "referenceVersion", + "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publication title of the external source.", + "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": "Network address where this external source can be accessed from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceAbstract", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Summary of the key messages in the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeries", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 journal or series of publications that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationCity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "City where the publishers are based.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "license", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 license associated with this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "numberOfPages", + "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 pages that this external source has.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeriesVolume", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 volume in the publication series that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 revision or version of the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attribution", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Attribution statement to use when consuming this external resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publisher", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publisher responsible for producing this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationYear", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Year when the publication of this version/edition of the external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationDate", + "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 when this version/edition of this external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "authors", + "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 authors for the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "firstPublicationDate", + "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 of the first published version/edition of this external source.", + "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": [ + "RelatedMedia", + "ExternalGlossaryLink" + ], + "classificationNames": [], + "relationshipNames": [ + "ContractLink", + "ExternalReferenceLink" + ], + "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" + ] + }, + "DigitalSubscription": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", + "name": "DigitalSubscription", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A specialized agreement that represents a subscription to a digital service or digital product.", + "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": "supportLevel", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of support agreed for the subscriber.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "serviceLevels", + "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": "Levels of service agreed with the subscriber.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [ + { + "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 + }, + { + "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": [ + "DigitalSubscriber" + ], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "ContractLink", + "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", + "AgreementItem", + "AttachedTermsAndConditions", + "InformationSupplyChainLink", + "InformationSupplyChainLink", + "GovernedBy", + "LineageMapping", + "LineageMapping", + "ValidValuesAssignment", + "Certification", + "ConsolidatedDuplicateLink", + "ConsolidatedDuplicateLink", + "Meetings", + "SearchKeywordLink", + "AttachedRating", + "DataClassAssignment", + "AttachedNoteLog", + "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" + ] + }, + "GovernanceDefinition": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Defines an aspect of the governance program.", + "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", + "DEPRECATED", + "OTHER", + "DELETED" + ], + "initialStatus": "DRAFT", + "propertiesDefinition": [ + { + "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 + } + ] + }, + "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": [ + "GovernancePolicy", + "GovernanceControl", + "CertificationType", + "DataProcessingPurpose", + "GovernanceDriver", + "LicenseType" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceDefinitionMetric", + "ExecutionPointUse", + "GovernedBy", + "GovernanceDefinitionScope" + ], + "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" + ] + }, + "DivergentClassificationAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8efd6257-a53e-451d-abfc-8e4899c38b1f", + "name": "DivergentClassificationAnnotation", + "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 classification 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": "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" + ] + }, + "Network": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "name": "Network", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Inter-connectivity for systems.", + "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": [], + "relationshipNames": [ + "VisibleEndpoint", + "NetworkGatewayLink" + ], + "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" + ] + }, + "Database": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0921c83f-b2db-4086-a52c-0d10e52ca078", + "name": "Database", + "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 relational data.", + "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": "importedFrom", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 connector where database is imported from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "instance", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 database instance.", + "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 database.", + "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": "databaseVersion", + "attributeDescription": "Deprecated attribute. Use the databaseVersion attribute to define the version number of database.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "databaseVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 database.", + "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 database.", + "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" + ] + }, + "Asset": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "The description of an asset that needs to be catalogued and governed.", + "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": "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 + } + ] + }, + "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": [ + "DataStore", + "Infrastructure", + "Process", + "DeployedReportType", + "DeployedAPI", + "DataFeed", + "DataSet", + "DesignModel" + ], + "classificationNames": [ + "LineageLog", + "MeteringLog", + "AssetOrigin", + "LogAnalysis", + "MobileAsset", + "ReferenceData", + "AuditLog", + "ExceptionBacklog", + "AssetZoneMembership" + ], + "relationshipNames": [ + "DeployedOn", + "DataContentForDataSet", + "AssetSchemaType", + "ConnectionToAsset", + "ServerAssetUse", + "ITInfrastructureProfile", + "SoftwarePackageDependency", + "AssetLocation", + "ValidValuesImplementation", + "AssociatedLog", + "ProcessOutput", + "AssetDiscoveryReport" + ], + "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" + ] + }, + "ObjectAttribute": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ccb408c0-582e-4a3a-a926-7082d53bb669", + "name": "ObjectAttribute", + "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": "An attribute in an object 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" + ] + }, + "SoftwareService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f3f69251-adb1-4042-9d95-70082f95a028", + "name": "SoftwareService", + "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": "Defines a capability that provides externally callable functions to other services.", + "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": [ + "SecurityService", + "MetadataAccessService", + "MetadataRepositoryService", + "UserViewService", + "MetadataIntegrationService", + "ApplicationService", + "EngineHostingService" + ], + "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" + ] + }, + "SemanticAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0b494819-28be-4604-b238-3af20963eea6", + "name": "SemanticAnnotation", + "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 of likely mappings to Glossary Terms for 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": "informalTerm", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Suggested term based on the analysis.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "candidateGlossaryTermGUIDs", + "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 potentially matching glossary terms.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "informalCategory", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Suggested category based on the analysis.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "candidateGlossaryCategoryGUIDs", + "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 potentially matching glossary categories.", + "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" + ] + }, + "AssetOwner": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28eeee285", + "name": "AssetOwner", + "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 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" + }, + "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" + ] + }, + "MetadataIntegrationService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "92f7fe27-cd2f-441c-a084-156821aa5bca", + "name": "MetadataIntegrationService", + "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 exchanges metadata between servers.", + "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" + ] + }, + "BusinessImperative": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bb094b5e-0934-4d8b-8727-48eb5d241a46", + "name": "BusinessImperative", + "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": "A mandatory goal that must be met by the business for it to be successful.", + "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" + ] + }, + "NetworkGateway": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9bbae94d-e109-4c96-b072-4f97123f04fd", + "name": "NetworkGateway", + "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 connection point enabling network traffic to pass between two networks.", + "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": "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": [ + "NetworkGatewayLink" + ], + "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" + ] + }, + "SecurityAccessControl": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f53bd594-5f75-4cf9-9f77-f5c35396590e", + "name": "SecurityAccessControl", + "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 technical control that defines who has access to the attach element.", + "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": "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" + ] + }, + "ContributionRecord": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28cccd285", + "name": "ContributionRecord", + "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 record of the contribution of an individual.", + "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": "isPublic", + "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 the contribution visible to other collaborators?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "karmaPoints", + "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": "Points capturing a person's engagement with open metadata.", + "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": [ + "PersonalContribution" + ], + "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" + ] + }, + "ParquetFile": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "97cba3a0-1dfd-4129-82b6-798de3eec0a4", + "name": "ParquetFile", + "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 which is formatted using the Apache Parquet format.", + "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": "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" + ] + }, + "DesignModelGroup": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b144ee2a-fa71-4897-b51a-dd5239c26910", + "name": "DesignModelGroup", + "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": "A collection of related design model elements within a model.", + "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": [ + "DesignModelGroupMembership" + ], + "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" + ] + }, + "DataProcessingPurpose": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "name": "DataProcessingPurpose", + "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": "Expected outcome, service or value from processing.", + "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": [ + "ApprovedPurpose", + "PermittedProcessing" + ], + "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" + ] + }, + "DataItemOwner": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "69836cfd-39b8-460b-8727-b04e19210069", + "name": "DataItemOwner", + "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 particular type 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": "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" + ] + }, + "DataField": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "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": "A description of a data field discovered within 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": "dataFieldName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 the data field.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "dataFieldSortOrder", + "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": "Sort order for the values of the data field.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "dataFieldType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 field.", + "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": "Default value that is added to the field if no value is specified.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "dataFieldDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Optional descriptive information about a data field.", + "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": "dataFieldAliases", + "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": "Optional list of aliases for the data field.", + "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 + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "DataFieldAnalysis", + "SchemaAttributeDefinition", + "DiscoveredDataField", + "DiscoveredNestedDataField", + "DiscoveredNestedDataField" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "HostCluster": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890", + "name": "HostCluster", + "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 group of hosts operating together to provide a scalable 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": [ + "HadoopCluster", + "KubernetesCluster" + ], + "classificationNames": [], + "relationshipNames": [ + "HostClusterMember" + ], + "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" + ] + }, + "TeamLeader": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "36db26d5-abb2-439b-bc15-d62d373c5db6", + "name": "TeamLeader", + "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 leading a team.", + "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" + ] + }, + "RelationshipAdviceAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "740f07dc-4ee8-4c2a-baba-efb55c73eb68", + "name": "RelationshipAdviceAnnotation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "name": "DataFieldAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A recommendation of the relationships that could be added to all or part 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": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "relationshipTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 potential relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "relationshipProperties", + "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 to add to the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "relatedEntityGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "entity that should be linked to the asset being analyzed", + "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" + ] + }, + "InformalTag": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ba846a7b-2955-40bf-952b-2793ceca090a", + "name": "InformalTag", + "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 descriptive tag for 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": "isPublic", + "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 the tag visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "tagName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive name of the tag.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "tagDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "More detail on the meaning of the tag.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "AttachedTag" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "GovernanceStatusLevel": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "a518de03-0f72-4944-9cd5-e05b43ae9c5e", + "name": "GovernanceStatusLevel", + "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 value to represent a specific level of status in a governance element.", + "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": "levelIdentifier", + "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": "Numeric value for the classification level", + "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 descriptive name 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": "Explanation of the meaning of this level of the classification", + "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" + ] + }, + "Application": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "58280f3c-9d63-4eae-9509-3f223872fb25", + "name": "Application", + "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 server capability supporting a specific business function.", + "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": "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" + ] + }, + "Person": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "description": "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": "preferredLanguage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Spoken or written language preferred by the person.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "employeeType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 used by employer typically to describe the type of employment contract.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "surname", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 family name of the person.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "initials", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "First letter of each of the person's given names.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "jobTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Role or level in the organization.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "givenNames", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 strings that are the part of a person's name that is not their surname.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "fullName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 or official name of the individual (if different from known name).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "isPublic", + "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 the profile visible to other collaborators?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pronouns", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 pronouns to use when addressing this person.", + "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": "The courtesy title for the person.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "employeeNumber", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 unique identifier of the person used by their employer.", + "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": [], + "classificationNames": [], + "relationshipNames": [ + "PersonalContribution", + "PersonRoleAppointment", + "Peer", + "Peer" + ], + "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" + ] + }, + "EnforcementPointDefinition": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e87ff806-bb9c-4c5d-8106-f38f2dd21037", + "name": "EnforcementPointDefinition", + "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 change is made to enforce a governance requirement.", + "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" + ] + }, + "VirtualMachine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "28452091-6b27-4f40-8e31-47ce34f58387", + "name": "VirtualMachine", + "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 virtual machine that uses a hypervisor to virtualize hardware.", + "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" + ] + }, + "ApplicationService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5b7f340e-7dc9-45c0-a636-c20605147c94", + "name": "ApplicationService", + "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": "A software service supporting a single reusable business function.", + "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" + ] + }, + "VirtualContainer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", + "name": "VirtualContainer", + "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": "Container-based virtual host.", + "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": [ + "DockerContainer" + ], + "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" + ] + }, + "GovernanceDriver": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "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 reason for having the governance program.", + "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": [ + "RegulationArticle", + "Regulation", + "BusinessImperative", + "Threat", + "GovernanceStrategy" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceDriverLink", + "GovernanceDriverLink", + "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" + ] + }, + "DivergentAttachmentRelationshipAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5613677a-865f-474e-8044-4167fa5a31b9", + "name": "DivergentAttachmentRelationshipAnnotation", + "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 relationships 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": "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": "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" + ] + }, + "Organization": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "50a61105-35be-4ee3-8b99-bdd958ed0685", + "name": "Organization", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Describes a specific organization.", + "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 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 + }, + { + "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": [], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "OrganizationalCapability", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "TargetForAction", + "Stakeholder", + "Stakeholder", + "RelationshipAnnotation", + "RelationshipAnnotation", + "DataProcessingSpecification", + "GovernanceActionRequestSource", + "ImplementedBy", + "ImplementedBy", + "ReferenceableFacet", + "ContactThrough", + "License", + "DigitalServiceProduct", + "ProfileIdentity", + "ToDoSource", + "DataProcessingTarget", + "ReferenceValueAssignment", + "Actions", + "TeamMembership", + "TeamLeadership", + "ControlFlow", + "ControlFlow", + "AssociatedSnippet", + "ExternalIdLink", + "ResourceList", + "ResourceList", + "DesignModelImplementation", + "AssignmentScope", + "AssignmentScope", + "AssociatedLog", + "ExternalReferenceLink", + "MediaReference", + "AgreementItem", + "TeamStructure", + "TeamStructure", + "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" + ] + }, + "Meeting": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6bf90c79-32f4-47ad-959c-8fff723fe744", + "name": "Meeting", + "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": "Two or more people come together to discuss a topic, agree and action or exchange information.", + "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": "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 of the meeting.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "startTime", + "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 time of the meeting.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "endTime", + "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": "End time of the meeting.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "objective", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Reason for the meeting and intended outcome.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "minutes", + "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": "Description of what happened at the meeting.", + "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": [ + "Meetings" + ], + "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" + ] + }, + "GovernanceAction": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "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 governance action that has been created to support the active governance of the open metadata ecosystem and/or digital landscape.", + "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": "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 belongs to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionGuards", + "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 returned by the governance action service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 request type used to call the service.", + "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 governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mandatoryGuards", + "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 list of guards that must be received before this governance action can progress.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameters", + "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 configure the governance service for this type of request.", + "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 action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "governanceActionTypeGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 governance action type that initiated this request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "governanceActionTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 name of the governance action type that initiated this request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "executorEngineGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 governance engine nominated to run the request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "executorEngineName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 governance engine nominated to run the request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", + "name": "GovernanceActionStatus", + "description": "Defines the current execution status of a governance action.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Requested", + "description": "The governance action has been created and is pending." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Approved", + "description": "The governance action is approved to run." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Waiting", + "description": "The governance action is waiting for its start time or the right conditions to run." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Activating", + "description": "The governance service for the governance action is being initialized in the governance engine." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "InProgress", + "description": "The governance engine is running the associated governance service for the governance action." + }, + { + "headerVersion": 1, + "ordinal": 10, + "value": "Actioned", + "description": "The governance service for the governance action has successfully completed processing." + }, + { + "headerVersion": 1, + "ordinal": 11, + "value": "Invalid", + "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." + }, + { + "headerVersion": 1, + "ordinal": 12, + "value": "Ignored", + "description": "The governance action has not been run because a different governance action was chosen." + }, + { + "headerVersion": 1, + "ordinal": 13, + "value": "Failed", + "description": "The governance service for the governance action failed to execute." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Undefined or unknown governance action status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Current lifecycle state of the governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "processName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 name of the process that initiated this request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "receivedGuards", + "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 received from the previous governance action service(s).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionMessage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Message to provide additional information on the results of running the governance service or the reasons for its failure.", + "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": "processingEngineUserId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Governance engine responsible for this governance action.", + "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 + } + ] + }, + "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": [ + "TargetForAction", + "GovernanceActionRequestSource", + "NextGovernanceAction", + "NextGovernanceAction" + ], + "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" + ] + }, + "DataFieldAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "name": "DataFieldAnnotation", + "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 collection of properties about 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" + }, + "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": [ + "DataProfileAnnotation", + "RequestForAction", + "DataClassAnnotation", + "ClassificationAnnotation", + "FingerprintAnnotation", + "QualityAnnotation", + "SemanticAnnotation", + "RelationshipAdviceAnnotation", + "DataProfileLogAnnotation" + ], + "classificationNames": [], + "relationshipNames": [ + "DataFieldAnalysis" + ], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "DataProfileLogAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "368e6fb3-7323-4f81-a723-5182491594bd", + "name": "DataProfileLogAnnotation", + "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 link to a log file containing properties about 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" + }, + "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": [ + "DataProfileLogFile" + ], + "inheritedRelationshipNames": [ + "DataFieldAnalysis", + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "OpenDiscoveryEngine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "be650674-790b-487a-a619-0a9002488055", + "name": "OpenDiscoveryEngine", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server capability for running open discovery services.", + "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" + }, + "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": [ + "DiscoveryEngineReport" + ], + "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" + ] + }, + "QueryDataContainer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b55c2740-2d41-4433-a099-596c8e9b7bf6", + "name": "QueryDataContainer", + "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 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" + ] + }, + "LogFile": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ff4c8484-9127-464a-97fc-99579d5bc429", + "name": "LogFile", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Identifies a data file as one containing log records.", + "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 log file.", + "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 log 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": [], + "classificationNames": [], + "relationshipNames": [ + "DataProfileLogFile" + ], + "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" + ] + }, + "SolutionComponent": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "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 a well-defined capability within a solution.", + "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 component.", + "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 component.", + "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 component.", + "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": [ + "SolutionComposition", + "SolutionComposition", + "SolutionBlueprintComposition", + "SolutionComponentPort" + ], + "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" + ] + }, + "SchemaTypeChoice": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", + "name": "SchemaTypeChoice", + "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 list of alternative schema types for attribute.", + "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": [ + "EventTypeList" + ], + "classificationNames": [], + "relationshipNames": [ + "SchemaTypeOption" + ], + "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" + ] + }, + "GovernanceClassificationLevel": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8af91d61-2ae8-4255-992e-14d7f745a556", + "name": "GovernanceClassificationLevel", + "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 value to represent a specific level in a governance classification definition.", + "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": "levelIdentifier", + "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": "Numeric value for the classification level", + "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 descriptive name 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": "Explanation of the meaning of this level of the classification", + "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" + ] + }, + "DocumentSchemaAttribute": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b5cefb7e-b198-485f-a1d7-8e661012499b", + "name": "DocumentSchemaAttribute", + "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 hierarchical 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": [], + "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" + ] + }, + "SoftwareServer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", + "name": "SoftwareServer", + "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 applications and data stores.", + "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": "serverVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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.", + "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.", + "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.", + "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": "serverVersion", + "attributeDescription": "Deprecated attribute. Use the serverVersion attribute to define the version number of software server.", + "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'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.", + "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": [ + "CloudTenant" + ], + "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" + ] + }, + "ExecutionPointDefinition": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", + "name": "ExecutionPointDefinition", + "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 an activity that supports the implementation of a governance requirement.", + "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": "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 + } + ] + }, + "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": [ + "ControlPointDefinition", + "VerificationPointDefinition", + "EnforcementPointDefinition" + ], + "classificationNames": [], + "relationshipNames": [ + "ExecutionPointUse" + ], + "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" + ] + }, + "DockerContainer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9882b8aa-eba3-4a30-94c6-43117efd11cc", + "name": "DockerContainer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", + "name": "VirtualContainer", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A virtual container using the docker platform.", + "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" + ] + }, + "RelatedMedia": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "747f8b86-fe7c-4c9b-ba75-979e093cc307", + "name": "RelatedMedia", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Images, video or sound media.", + "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": "mediaTypeOtherId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 code (typically a valid value definition) that defines the media type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "defaultMediaUsage", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c6861a72-7485-48c9-8040-876f6c342b61", + "name": "MediaUsage", + "description": "Defines how a related media reference should be used.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Icon", + "description": "Provides a small image to represent the asset in tree views and graphs." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Thumbnail", + "description": "Provides a small image about the asset that can be used in lists." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Illustration", + "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "UsageGuidance", + "description": "Provides guidance to a person on how to use the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Default media usage by a consumer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "9548390c-69f5-4dc6-950d-6fdffb257b56", + "name": "MediaType", + "description": "Defines the type of media.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Image", + "description": "The media is an image." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Audio", + "description": "The media is an audio recording." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Document", + "description": "The media is a text document, probably rich text." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Video", + "description": "The media is a video recording." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of media, probably not supported." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of media.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "defaultMediaUsageOtherId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 code (typically a valid value definition) that defines the media use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaUsage", + "attributeType": { + "class": "CollectionDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "COLLECTION", + "guid": "0103fe10-98b0-4910-8ee0-21d529f7ff6d", + "name": "array", + "description": "An array of integers.", + "collectionDefCategory": "OM_COLLECTION_ARRAY", + "argumentCount": 1, + "argumentTypes": [ + "OM_PRIMITIVE_TYPE_INT" + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "defaultMediaUsage", + "attributeDescription": "Type of recommended media usage.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [ + { + "headerVersion": 1, + "attributeName": "pageRange", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "copyright", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Copyright statement associated with this external source.", + "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 to use when displaying reference in a list.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationNumbers", + "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", + "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 external source. For example, its significance and use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "edition", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 edition for this external source.", + "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": "referenceVersion", + "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publication title of the external source.", + "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": "Network address where this external source can be accessed from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceAbstract", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Summary of the key messages in the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeries", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 journal or series of publications that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationCity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "City where the publishers are based.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "license", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 license associated with this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "numberOfPages", + "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 pages that this external source has.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeriesVolume", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 volume in the publication series that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 revision or version of the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attribution", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Attribution statement to use when consuming this external resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publisher", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publisher responsible for producing this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationYear", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Year when the publication of this version/edition of the external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationDate", + "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 when this version/edition of this external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "authors", + "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 authors for the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "firstPublicationDate", + "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 of the first published version/edition of this external source.", + "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": [ + "MediaReference" + ], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "ContractLink", + "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", + "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" + ] + }, + "EnterpriseAccessLayer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "39444bf9-638e-4124-a5f9-1b8f3e1b008b", + "name": "EnterpriseAccessLayer", + "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": "Repository services for the Open Metadata Access Services (OMAS) supporting federated queries and aggregated events from the connected cohorts.", + "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": "accessedMetadataCollectionId", + "attributeDescription": "Deprecated attribute. Use the accessedMetadataCollectionId attribute to define the unique identifier for the metadata collection accessed through this enterprise access layer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "topicRoot", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Root of topic names used by the Open Metadata access Services (OMASs).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "accessedMetadataCollectionId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 accessed through this enterprise access layer.", + "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": [], + "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" + ] + }, + "DivergentAttachmentValueAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2", + "name": "DivergentAttachmentValueAnnotation", + "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 the property values in attachments 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": "divergentPropertyNames", + "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" + ] + }, + "Annotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "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": "A set of results from a discovery service describing related properties 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": "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 + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [ + "SchemaAnalysisAnnotation", + "DataFieldAnnotation", + "SuspectDuplicateAnnotation", + "DataSourceMeasurementAnnotation", + "DivergentDuplicateAnnotation" + ], + "classificationNames": [], + "relationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "DiscoveredAnnotation" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "GovernanceRule": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "name": "GovernanceRule", + "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 logic expression.", + "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": [ + "NamingStandardRule" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceRuleImplementation" + ], + "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" + ] + }, + "OpenDiscoveryAnalysisReport": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "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 set of results from an open discovery service.", + "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": "discoveryServiceStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b2fdeddd-24eb-4e9c-a2a4-2693828d4a69", + "name": "DiscoveryServiceRequestStatus", + "description": "Defines the progress or completion of a requested discovery service.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Activating", + "description": "Discovery service is being initialized in the discovery engine." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "InProgress", + "description": "Discovery service is executing." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Failed", + "description": "Discovery service has failed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Completed", + "description": "Discovery service has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Other", + "description": "Discovery service has a status that is not covered by this enum." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery service status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of a requested discovery service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "discoveryRequestStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ecb48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "DiscoveryRequestStatus", + "description": "Defines the progress or completion of a discovery request.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "InProgress", + "description": "Discovery request is executing." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Failed", + "description": "Discovery request has failed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Completed", + "description": "Discovery request has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery request status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "discoveryServiceStatus", + "attributeDescription": "Deprecated property.", + "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 report.", + "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": "discoveryRequestStep", + "attributeType": { + "class": "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": "discoveryAnalysisStep", + "attributeDescription": "Deprecated property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "executionDate", + "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 that the analysis was run.", + "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 content of the report.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "discoveryAnalysisStep", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 current processing step of a running discovery service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "analysisParameters", + "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 parameters used to drive the analysis.", + "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": [ + "DiscoveredAnnotation", + "DiscoveryEngineReport", + "DiscoveryInvocationReport", + "AssetDiscoveryReport" + ], + "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" + ] + }, + "DesignModel": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "name": "DesignModel", + "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 curated collection of design model elements.", + "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": "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": "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.", + "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": "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": [ + "ConceptModel" + ], + "relationshipNames": [ + "DesignModelOwnership" + ], + "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" + ] + }, + "OpenMetadataRoot": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "description": "Common root for all open metadata entity types.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE" + }, + "inheritedAttributes": [], + "subTypeNames": [ + "Referenceable", + "IntegrationReport", + "SearchKeyword", + "Rating", + "TranslationDetail", + "DataField", + "InformalTag", + "Annotation", + "Like", + "AnnotationReview" + ], + "classificationNames": [ + "Memento", + "Anchors" + ], + "relationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedRelationshipNames": [], + "inheritedClassificationNames": [] + }, + "ServiceLevelObjective": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "22c4e433-1b87-4446-840a-03f83d2dc113", + "name": "ServiceLevelObjective", + "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": "The set of behavior related objectives that an asset or capability seeks to achieve.", + "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": "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" + ] + }, + "VirtualConnection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "82f9c664-e59d-484c-a8f3-17088c23a2f3", + "name": "VirtualConnection", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A connector for a virtual resource that needs to retrieve data from multiple places.", + "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": "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 + }, + { + "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": [ + "EmbeddedConnection" + ], + "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", + "EmbeddedConnection", + "ConnectionToAsset", + "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", + "ConnectionEndpoint", + "LineageMapping", + "LineageMapping", + "ValidValuesAssignment", + "Certification", + "ConsolidatedDuplicateLink", + "ConsolidatedDuplicateLink", + "ConnectionConnectorType", + "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" + ] + }, + "TabularColumn": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", + "name": "TabularColumn", + "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 column attribute for a table oriented 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": [ + "RelationalColumn", + "TabularFileColumn" + ], + "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" + ] + }, + "SuspectDuplicateAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f703a621-4078-4c07-ab22-e7c334b94235", + "name": "SuspectDuplicateAnnotation", + "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": "Annotation linking referenceables that are suspected of being 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": "duplicateAnchorGUIDs", + "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 unique identifiers for the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingPropertyNames", + "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 properties that are the same in the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingClassificationNames", + "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 classifications that are the same in the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingAttachmentGUIDs", + "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 attachments that are the same in the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingRelationshipGUIDs", + "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 direct relationships that are the same in the suspects.", + "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": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "SchemaAttribute": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A schema element that nests another schema type in its parent.", + "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": "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 + } + ] + }, + "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": [ + "RelationalTable", + "EventSchemaAttribute", + "DisplayDataField", + "APIParameter", + "QueryDataField", + "DisplayDataContainer", + "GraphVertex", + "ObjectAttribute", + "QueryDataContainer", + "DocumentSchemaAttribute", + "TabularColumn", + "GraphEdge" + ], + "classificationNames": [ + "TypeEmbeddedAttribute" + ], + "relationshipNames": [ + "SchemaAttributeDefinition", + "NestedSchemaAttribute", + "NestedSchemaAttribute", + "AttributeForSchema", + "SchemaAttributeType" + ], + "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" + ] + }, + "GraphEdge": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", + "name": "GraphEdge", + "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" + ] + }, + "Threat": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "4ca51fdf-9b70-46b1-bdf6-8860429e78d8", + "name": "Threat", + "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": "A description of a specific threat.", + "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" + ] + }, + "EventType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8bc88aba-d7e4-4334-957f-cfe8e8eadc32", + "name": "EventType", + "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 description of an event (message)", + "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" + ] + }, + "OperatingPlatform": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "name": "OperatingPlatform", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Characteristics of the operating system in use within a host.", + "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": "byteOrdering", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "e5612c3a-49bd-4148-8f67-cfdf145d5fd8", + "name": "Endianness", + "description": "Defines the sequential order in which bytes are arranged into larger numerical values when stored in memory or when transmitted over digital links.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BigEndian", + "description": "Bits or bytes order from the big end." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "LittleEndian", + "description": "Bits or bytes ordered from the little end." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Definition of the hardware byte ordering.", + "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 operating platform.", + "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 operating platform.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "operatingSystem", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 operating system running on this operating platform.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "endianness", + "attributeType": { + "class": "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": "byteOrdering", + "attributeDescription": "Deprecated attribute. Use the byteOrdering attribute instead.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "operatingSystemPatchLevel", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of patches applied to the operating system.", + "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": [ + "OperatingPlatformManifest", + "OperatingPlatformUse" + ], + "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" + ] + }, + "RelationalTableType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98", + "name": "RelationalTableType", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4", + "name": "ComplexSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A table type for a relational database.", + "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" + ] + }, + "DivergentValueAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b86cdded-1078-4e42-b6ba-a718c2c67f62", + "name": "DivergentValueAnnotation", + "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 the property values 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": "divergentPropertyNames", + "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" + ] + }, + "OpenDiscoveryService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "name": "OpenDiscoveryService", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "191d870c-26f4-4310-a021-b8ca8772719d", + "name": "GovernanceService", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A pluggable component for discovering properties about 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": [ + "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": [ + "OpenDiscoveryPipeline" + ], + "classificationNames": [], + "relationshipNames": [ + "DiscoveryInvocationReport" + ], + "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" + ] + }, + "SoftwareCapability": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "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 software capability such as an software service or engine.", + "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": "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 + } + ] + }, + "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": [ + "SoftwareServerCapability" + ], + "classificationNames": [ + "CloudService", + "ProcessingState" + ], + "relationshipNames": [ + "ServerAssetUse", + "SupportedSoftwareCapability" + ], + "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" + ] + }, + "Like": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "deaa5ca0-47a0-483d-b943-d91c76744e01", + "name": "Like", + "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": "Boolean type of rating expressing a favorable impression.", + "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": "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 + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "AttachedLike" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "StructSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "a13b409f-fd67-4506-8d94-14dfafd250a4", + "name": "StructSchemaType", + "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 that has a list of attributes, typically of different 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": [], + "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" + ] + }, + "GovernanceActionEngine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5d74250a-57ca-4197-9475-8911f620a94e", + "name": "GovernanceActionEngine", + "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 collection of related governance services of the same type from the Governance Action Framework (GAF).", + "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", + "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" + ] + }, + "ITInfrastructure": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "c19746ac-b3ec-49ce-af4b-83348fc55e07", + "name": "Infrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Hardware and base software that supports an IT 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": "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": [ + "SoftwareServerPlatform", + "Network", + "SoftwareServer", + "Host" + ], + "classificationNames": [ + "StewardshipServer", + "Webserver", + "RepositoryProxy", + "ApplicationServer", + "DatabaseServer", + "ServerPurpose", + "MetadataServer", + "GovernanceDaemon", + "IntegrationServer" + ], + "relationshipNames": [ + "DeployedOn", + "ServerEndpoint", + "OperatingPlatformUse", + "SupportedSoftwareCapability" + ], + "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" + ] + }, + "APIOperation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Description of an API operation.", + "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": [ + "APIResponse", + "APIOperations", + "APIHeader", + "APIRequest" + ], + "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" + ] + }, + "Engine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "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 programmable engine for running automated processes.", + "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": "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": [ + "ReportingEngine", + "DataMovementEngine", + "WorkflowEngine", + "AnalyticsEngine", + "DataVirtualizationEngine" + ], + "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" + ] + }, + "SolutionOwner": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e44d5019-37e5-4965-8b89-2bef412833bf", + "name": "SolutionOwner", + "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 an IT solution.", + "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" + ] + }, + "SolutionPort": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "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 external endpoint for a solution.", + "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 port.", + "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 port.", + "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 port.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "direction", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "4879c96e-26c7-48af-ba92-8277632be733", + "name": "SolutionPortDirection", + "description": "Defines the direction of flow of information through a solution port.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The direction of flow is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Output", + "description": "The process is producing information through this port." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Input", + "description": "The process is consuming information through this port." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "InOut", + "description": "The process has a call interface attached to this port." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "OutIn", + "description": "The process is issuing a call to an external API through this port." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another direction." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Which way is data flowing?", + "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": [ + "SolutionPortDelegation", + "SolutionPortDelegation", + "SolutionLinkingWire", + "SolutionLinkingWire", + "SolutionPortSchema", + "SolutionComponentPort" + ], + "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" + ] + }, + "KeyStoreCollection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "979d97dd-6782-4648-8e2a-8982994533e6", + "name": "KeyStoreCollection", + "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 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": "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" + ] + }, + "GovernanceResponsibility": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "89a76b24-deb8-45bf-9304-a578a610326f", + "name": "GovernanceResponsibility", + "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 a responsibility of a person, team or organization that supports 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": [ + "GovernanceResponsibilityAssignment" + ], + "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" + ] + }, + "TabularFileColumn": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "af6265e7-5f58-4a9c-9ae7-8d4284be62bd", + "name": "TabularFileColumn", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", + "name": "TabularColumn", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A column in a tabular file.", + "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" + ] + }, + "NoteEntry": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", + "name": "NoteEntry", + "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 entry in 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", + "propertiesDefinition": [ + { + "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 of the note entry.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "text", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Text of the note entry.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "isPublic", + "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 the note visible to more than the note log authors?", + "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": [ + "AttachedNoteLogEntry" + ], + "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" + ] + }, + "GovernancePrinciple": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3b7d1325-ec2c-44cb-8db0-ce207beb78cf", + "name": "GovernancePrinciple", + "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 principle related to how data is managed or used that the organization should ensure remains true.", + "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" + ] + }, + "ConceptBead": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "name": "ConceptBead", + "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 representation of a person, place or object.", + "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", + "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" + ] + }, + "Catalog": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f4fffcc0-d9eb-4bb9-8aff-0718932f689e", + "name": "Catalog", + "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 descriptions about people, places, digital assets, things, ...", + "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" + ] + }, + "DataSourceMeasurementAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c85bea73-d7af-46d7-8a7e-cb745910b1df", + "name": "DataSourceMeasurementAnnotation", + "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 summary set of measurements for 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": "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 + } + ] + }, + "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": [ + "DataSourcePhysicalStatusAnnotation" + ], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "PropertyFacet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6403a704-aad6-41c2-8e08-b9525c006f85", + "name": "PropertyFacet", + "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": "Additional properties that support a particular vendor or service.", + "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": "schemaVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property facet schema.", + "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 property facet contents.", + "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": "schemaVersion", + "attributeDescription": "Deprecated attribute. Use the schemaVersion attribute to define the version number of the property facet schema.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "properties", + "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 for the property facet.", + "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": [ + "ReferenceableFacet" + ], + "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" + ] + }, + "EngineHostingService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "90880f0b-c7a3-4d1d-93cc-0b877f27cd33", + "name": "EngineHostingService", + "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 services that delegate to a hosted engine.", + "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" + ] + }, + "ReferenceCodeTable": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "201f48c5-4e4b-41dc-9c5f-0bc9742190cf", + "name": "ReferenceCodeTable", + "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 code values and their translations.", + "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" + ] + }, + "TechnicalControl": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec", + "name": "TechnicalControl", + "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 technology.", + "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": [ + "SecurityGroup", + "GovernanceProcess", + "SecurityAccessControl", + "GovernanceRule", + "ServiceLevelObjective" + ], + "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" + ] + }, + "AnnotationReview": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b893d6fc-642a-454b-beaf-809ee4dd876a", + "name": "AnnotationReview", + "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": "The results of a stewardship review of an annotation.", + "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": "reviewDate", + "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 of the review.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "Steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 identifier for the steward performing the review.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "comment", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes provided by the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "AnnotationReviewLink" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "MediaCollection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0075d603-1627-41c5-8cae-f5458d1247fe", + "name": "MediaCollection", + "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 group of related media files.", + "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": [ + "GroupedMedia" + ], + "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" + ] + }, + "Collection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "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 related items.", + "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 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 + } + ] + }, + "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": [ + "NamingStandardRuleSet", + "EventSet", + "SoftwareArchive" + ], + "classificationNames": [ + "GovernanceDomainSet", + "Set", + "ConnectorTypeDirectory", + "Folder", + "IncidentClassifierSet", + "SoftwarePackageManifest", + "GovernanceClassificationSet", + "GovernanceStatusSet" + ], + "relationshipNames": [ + "CollectionMembership", + "OperatingPlatformManifest", + "SoftwarePackageDependency" + ], + "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" + ] + }, + "TabularSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "248975ec-8019-4b8a-9caf-084c8b724233", + "name": "TabularSchemaType", + "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 table oriented 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" + ] + }, + "GovernanceZone": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "290a192b-42a7-449a-935a-269ca62cfdac", + "name": "GovernanceZone", + "status": "ACTIVE_TYPEDEF", + "version": 5, + "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 assets that are suitable for a particular usage or are governed by a particular 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": "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 of this zone for user interfaces and reports.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "criteria", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 types of assets that belong in this zone.", + "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 zone to the assets matching the criteria.", + "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 zone.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "zoneName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 zone - 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": [], + "relationshipNames": [ + "ZoneHierarchy", + "ZoneHierarchy" + ], + "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" + ] + }, + "RelationalDBSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f20f5f45-1afb-41c1-9a09-34d8812626a4", + "name": "RelationalDBSchemaType", + "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 relational database.", + "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" + ] + }, + "DivergentDuplicateAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "251e443c-dee0-47fa-8a73-1a9d511915a0", + "name": "DivergentDuplicateAnnotation", + "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": "Annotation documenting differences in the values 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": "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 + } + ] + }, + "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": [ + "DivergentRelationshipAnnotation", + "DivergentClassificationAnnotation", + "DivergentValueAnnotation", + "DivergentAttachmentAnnotation" + ], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "GovernanceApproach": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67", + "name": "GovernanceApproach", + "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 preferred approach to managing or using data.", + "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" + ] + }, + "DivergentAttachmentAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6", + "name": "DivergentAttachmentAnnotation", + "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 the attachments 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": "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 + } + ] + }, + "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": [ + "DivergentAttachmentClassificationAnnotation", + "DivergentAttachmentRelationshipAnnotation", + "DivergentAttachmentValueAnnotation" + ], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "ObjectSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6920fda1-7c07-47c7-84f1-9fb044ae153e", + "name": "ObjectSchemaType", + "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 attribute for an object.", + "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" + ] + }, + "TableDataSet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "20c45531-5d2e-4eb6-9a47-035cb1067b82", + "name": "TableDataSet", + "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 tabular data source (typically a database table) that is an asset in its own right.", + "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" + ] + }, + "GovernanceStrategy": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf", + "name": "GovernanceStrategy", + "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": "Defines how the governance program and the supporting capabilities are supporting the business strategy.", + "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": "businessImperatives", + "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": "Goals or required outcomes from the business strategy that is supported by the data strategy.", + "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": [], + "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" + ] + }, + "KubernetesCluster": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c", + "name": "KubernetesCluster", + "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 host cluster managing containerized applications.", + "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" + ] + }, + "GovernanceOfficer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "578a3510-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceOfficer", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee", + "name": "GovernanceRole", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Person responsible for a governance domain.", + "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": "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" + ] + }, + "LicenseType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", + "name": "LicenseType", + "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 type of license that sets out specific terms and conditions for the use of an asset.", + "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 rights, terms and conditions associated with the licence.", + "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": [ + "License" + ], + "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" + ] + }, + "ITProfile": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "81394f85-6008-465b-926e-b3fae4668937", + "name": "ITProfile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Descriptive details about a processing engine or other IT infrastructure.", + "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 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": [], + "classificationNames": [], + "relationshipNames": [ + "ITInfrastructureProfile" + ], + "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" + ] + }, + "GlossaryTerm": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "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 semantic description of something, such as a concept, object, asset, technology, role or group.", + "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 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 + } + ] + }, + "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": [ + "ControlledGlossaryTerm" + ], + "classificationNames": [ + "SpineAttribute", + "ContextDefinition", + "SpineObject", + "PrimaryCategory", + "ObjectIdentifier", + "DataValue", + "ActivityDescription", + "AbstractConcept", + "ElementSupplement" + ], + "relationshipNames": [ + "UsedInContext", + "ReplacementTerm", + "ReplacementTerm", + "TermTYPEDBYRelationship", + "TermTYPEDBYRelationship", + "Synonym", + "Synonym", + "IsATypeOfRelationship", + "IsATypeOfRelationship", + "RelatedTerm", + "RelatedTerm", + "LibraryTermReference", + "TermAnchor", + "Translation", + "Translation", + "PreferredTerm", + "PreferredTerm", + "ValidValue", + "ValidValue", + "TermCategorization", + "Antonym", + "Antonym", + "GlossaryTermEvolution", + "ISARelationship", + "ISARelationship", + "SemanticAssignment", + "TermHASARelationship", + "TermHASARelationship", + "SupplementaryProperties" + ], + "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" + ] + }, + "APIParameterList": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ba167b12-969f-49d3-8bea-d04228d9a44b", + "name": "APIParameterList", + "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 list of parameters for an API.", + "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": "required", + "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 parameter list required when calling the API.", + "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", + "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" + ] + }, + "Topic": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "29100f49-338e-4361-b05d-7e4e8e818325", + "name": "Topic", + "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 location for storing and distributing related events.", + "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": "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 + } + ] + }, + "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": [ + "KafkaTopic" + ], + "classificationNames": [], + "relationshipNames": [ + "TopicSubscribers" + ], + "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" + ] + }, + "DeployedConnector": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c9a183ab-67f4-46a4-8836-16fa041769b7", + "name": "DeployedConnector", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd", + "name": "DeployedSoftwareComponent", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A connector that is configured and deployed to run in a specific software server capability.", + "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": "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": [ + "IntegrationConnector", + "GovernanceService" + ], + "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", + "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" + ] + }, + "IncidentClassifier": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1fad7fe4-5115-412b-ae31-a418e93888fe", + "name": "IncidentClassifier", + "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 definition of a classifier used to label incident reports.", + "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": "classifierLabel", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Label to add to the incident.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classifierIdentifier", + "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": "Option for indicator value associated with the classifier label.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classifierName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 classifier identifier.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classifierDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 meaning of the classifier identifier.", + "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" + ] + }, + "Comment": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "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": "Descriptive feedback or discussion 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": "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": "commentType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "06d5032e-192a-4f77-ade1-a4b97926e867", + "name": "CommentType", + "description": "Descriptor for a comment that indicated its intent.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "GeneralComment", + "description": "General comment." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Question", + "description": "A question." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Answer", + "description": "An answer to a previously asked question." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Suggestion", + "description": "A suggestion for improvement." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Experience", + "description": "An account of an experience." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "None of the above." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of comment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "text", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Feedback comments or additional information.", + "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": "06d5032e-192a-4f77-ade1-a4b97926e867", + "name": "CommentType", + "description": "Descriptor for a comment that indicated its intent.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "GeneralComment", + "description": "General comment." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Question", + "description": "A question." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Answer", + "description": "An answer to a previously asked question." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Suggestion", + "description": "A suggestion for improvement." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Experience", + "description": "An account of an experience." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "None of the above." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "commentType", + "attributeDescription": "Deprecated attribute. Use the commentType attribute to describe the type of comment.", + "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": [ + "AttachedComment", + "AcceptedAnswer", + "AcceptedAnswer" + ], + "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" + ] + }, + "GovernanceEngine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "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 related governance services of the same type.", + "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": [ + "RepositoryGovernanceEngine", + "OpenDiscoveryEngine", + "GovernanceActionEngine" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceActionTypeExecutor", + "SupportedGovernanceService" + ], + "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" + ] + }, + "EventSet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bead9aa4-214a-4596-8036-aa78395bbfb1", + "name": "EventSet", + "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": "A collection of related event 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": "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" + ] + }, + "NamingStandardRule": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "52505b06-98a5-481f-8a32-db9b02afabfc", + "name": "NamingStandardRule", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "name": "GovernanceRule", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Describes a parsing rule used to create compliant names.", + "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": "namePattern", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 naming standard rule.", + "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": [], + "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", + "GovernanceRuleImplementation", + "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" + ] + }, + "ExternalId": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "name": "ExternalId", + "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": "Alternative identifier used in another system.", + "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": "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 used in an external system.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "keyPattern", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", + "name": "KeyPattern", + "description": "Defines the type of identifier used for an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "LocalKey", + "description": "Unique key allocated and used within the scope of a single system." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "RecycledKey", + "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "NaturalKey", + "description": "Key derived from an attribute of the entity, such as email address, passport number." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "MirrorKey", + "description": "Key value copied from another system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "AggregateKey", + "description": "Key formed by combining keys from multiple systems." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "CallersKey", + "description": "Key from another system can bey used if system name provided." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "StableKey", + "description": "Key value will remain active even if records are merged." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another key pattern." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Management pattern associated with the identifier.", + "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": [ + "ExternalIdScope", + "ExternalIdLink" + ], + "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" + ] + }, + "Host": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Named IT infrastructure system that supports multiple software servers.", + "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": [ + "BareMetalComputer", + "HostCluster", + "VirtualMachine", + "VirtualContainer" + ], + "classificationNames": [ + "CloudProvider" + ], + "relationshipNames": [ + "HostClusterMember", + "AttachedStorage" + ], + "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" + ] + }, + "InformationView": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "68d7b905-6438-43be-88cf-5de027b4aaaf", + "name": "InformationView", + "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 selected data items from one or more data stores or 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", + "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 view.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "comment", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Comment", + "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 entity.", + "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": "Information View 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": "Information View 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": "Information View 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" + ] + }, + "SubscriberList": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "69751093-35f9-42b1-944b-ba6251ff513d", + "name": "SubscriberList", + "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 a list of endpoints registered to receive events from a topic.", + "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": [ + "TopicSubscribers" + ], + "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" + ] + }, + "TeamMember": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "46db26d5-abb2-538b-bc15-d62d373c5db6", + "name": "TeamMember", + "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 assigned to a team.", + "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" + ] + }, + "SoftwareArchive": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa", + "name": "SoftwareArchive", + "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": "A collection of runnable software components.", + "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": "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" + ] + }, + "DataProcessingAction": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "7f53928f-9148-4710-ad37-47633f33cb08", + "name": "DataProcessingAction", + "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 processing on a single target item.", + "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": "Name of the processing 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": "Brief description of the processing 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": [ + "DataProcessingTarget", + "DetailedProcessingActions" + ], + "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" + ] + }, + "CommunityMember": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "fbd42379-f6c3-4f09-b6f7-378565cda993", + "name": "CommunityMember", + "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 who has joined a community.", + "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" + ] + }, + "OpenDiscoveryPipeline": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "081abe00-740e-4143-b0d5-a1f55450fc22", + "name": "OpenDiscoveryPipeline", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "name": "OpenDiscoveryService", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A pluggable component that calls multiple discovery services.", + "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" + }, + "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", + "DiscoveryInvocationReport", + "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" + ] + }, + "NoteLog": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "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 ordered list of related notes.", + "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 note log.", + "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 note log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "isPublic", + "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 the note log visible to more than the note log authors?", + "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": [ + "AttachedNoteLogEntry", + "AttachedNoteLog", + "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", + "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" + ] + }, + "ExternalGlossaryLink": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "description": "The location of a glossary stored outside of the open metadata ecosystem.", + "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": "pageRange", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "copyright", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Copyright statement associated with this external source.", + "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 to use when displaying reference in a list.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationNumbers", + "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", + "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 external source. For example, its significance and use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "edition", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 edition for this external source.", + "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": "referenceVersion", + "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publication title of the external source.", + "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": "Network address where this external source can be accessed from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceAbstract", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Summary of the key messages in the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeries", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 journal or series of publications that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationCity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "City where the publishers are based.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "license", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 license associated with this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "numberOfPages", + "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 pages that this external source has.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeriesVolume", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 volume in the publication series that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 revision or version of the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attribution", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Attribution statement to use when consuming this external resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publisher", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publisher responsible for producing this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationYear", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Year when the publication of this version/edition of the external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationDate", + "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 when this version/edition of this external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "authors", + "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 authors for the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "firstPublicationDate", + "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 of the first published version/edition of this external source.", + "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": [ + "LibraryTermReference", + "LibraryCategoryReference", + "ExternallySourcedGlossary" + ], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "ContractLink", + "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", + "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" + ] + }, + "DataClass": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "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 logical data type specification.", + "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": "Display name of the data class.", + "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 data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classCode", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 processing class that can identify the data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "userDefined", + "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": "Defined by owning organization rather than vendor.", + "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": "Logical group for this data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "specification", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Parsing string used to identify values of this data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "specificationDetails", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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": "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": "Typical data type used to store this value.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "defaultThreshold", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "52aeb769-37b7-4b30-b949-ddc7dcebcfa2", + "name": "float", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_FLOAT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Match threshold that a data field is expected to achieve to be assigned this data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "example", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Example of a data value that matches this data class.", + "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": [ + "DataClassComposition", + "DataClassComposition", + "DataClassHierarchy", + "DataClassHierarchy", + "DataClassAssignment" + ], + "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" + ] + }, + "GovernanceService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "191d870c-26f4-4310-a021-b8ca8772719d", + "name": "GovernanceService", + "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 connector that performs some governance operation.", + "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": "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": [ + "RepositoryGovernanceService", + "GovernanceActionService", + "OpenDiscoveryService" + ], + "classificationNames": [], + "relationshipNames": [ + "SupportedGovernanceService" + ], + "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" + ] + } + }, + "relationships": { + "UsedInContext": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2dc524d2-e29f-4186-9081-72ea956c75de", + "name": "UsedInContext", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms where on describes the context where the other one is valid to use.", + "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": "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contextRelevantTerms", + "attributeDescription": "Glossary terms used in this specific context.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInContexts", + "attributeDescription": "Elements describing the contexts where this term is used.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedComment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0d90501b-bf29-4621-a207-0c8c953bdac9", + "name": "AttachedComment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a comment to an item, or another comment.", + "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": "isPublic", + "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 the attached comment visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "commentAnchor", + "attributeDescription": "Element that this comment relates.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "comments", + "attributeDescription": "Accumulated comments.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessPort": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2", + "name": "ProcessPort", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a process and one of its ports.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "owningProcess", + "attributeDescription": "Process linked to the port", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "ports", + "attributeDescription": "Port to the process", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataFieldAnalysis": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "833e849d-eda2-40bb-9e6b-c3ca0b56d581", + "name": "DataFieldAnalysis", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Attached data field level annotations.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "name": "DataFieldAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataFieldAnnotations", + "attributeDescription": "The annotations for this data field.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "annotatedDataFields", + "attributeDescription": "Data fields with addition properties attached.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DeployedOn": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6932ba75-9522-4a06-a4a4-ee60a4df6aab", + "name": "DeployedOn", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies an IT Infrastructure asset that is deployed to a specific destination.", + "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": "deploymentTime", + "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": "Time that the IT Infrastructure was deployed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployer", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person, organization or engine that deployed the IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifying property name of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deploymentStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", + "name": "OperationalStatus", + "description": "Defines whether a component is operational.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Disabled", + "description": "The component is not operational." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Enabled", + "description": "The component is operational." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The operational status of the the IT Infrastructure on the specific destination.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedElement", + "attributeDescription": "IT infrastructure deployed to this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedTo", + "attributeDescription": "Deployment destination.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AnnotationReviewLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5d3c2fb7-fa04-4d77-83cb-fd9216a07769", + "name": "AnnotationReviewLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Review results for an annotation.", + "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": "annotationStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", + "name": "AnnotationStatus", + "description": "Defines the status of an annotation.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "New", + "description": "The annotation is new." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewed", + "description": "The annotation has been reviewed by a steward." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Approved", + "description": "The annotation has been approved." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Actioned", + "description": "The request has been actioned." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Invalid", + "description": "The annotation is invalid or incorrect." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Ignore", + "description": "The annotation should be ignored." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Status of the processing as a result of the annotation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "reviewedAnnotations", + "attributeDescription": "The annotations being reviewed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b893d6fc-642a-454b-beaf-809ee4dd876a", + "name": "AnnotationReview", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "annotationReviews", + "attributeDescription": "The feedback about the annotations.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectCharterLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f081808d-545a-41cb-a9aa-c4f074a16c78", + "name": "ProjectCharterLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a Project with its Charter.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projects", + "attributeDescription": "The projects guided by this charter.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f96b5a32-42c1-4a74-8f77-70a81cec783d", + "name": "ProjectCharter", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "charter", + "attributeDescription": "The charter guiding this project.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "DataClassComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "767fb343-4699-49c1-a0f8-af6da78505f8", + "name": "DataClassComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a data class to another in a part of hierarchy.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "partOfDataClasses", + "attributeDescription": "Data classes that includes other data classes in its definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "madeOfDataClasses", + "attributeDescription": "Data classes that provide part of another data class's definitions.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceDriverLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c5e6fada-2c12-46ee-afa9-b71dd1bd8179", + "name": "GovernanceDriverLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a two governance drivers.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkingDrivers", + "attributeDescription": "Governance driver that makes use of another governance driver's requirements.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedDrivers", + "attributeDescription": "Governance driver that defines requirements that support another governance driver.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PersonalContribution": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4a316abe-eeee-4d11-ad5a-4bfb4079b80b", + "name": "PersonalContribution", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a person's contribution record.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributor", + "attributeDescription": "The person behind the contribution.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28cccd285", + "name": "ContributionRecord", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributionRecord", + "attributeDescription": "The record of activity by this person.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "DataContentForDataSet": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b827683c-2924-4df3-a92d-7be1888e23c0", + "name": "DataContentForDataSet", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The assets that provides data for a data 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": "queryId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for placeholder in data set's formula.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "query", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 how the value(s) is/are retrieved.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "BOTH", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataContent", + "attributeDescription": "Assets supporting a data set.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedDataSets", + "attributeDescription": "Data sets that use this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RegisteredIntegrationConnector": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2", + "name": "RegisteredIntegrationConnector", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between an integration group and an integration connector that is part of the group.", + "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 connector for logging purposes.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "connectorUserId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for the integration connector to use when working with open metadata. The default userId comes from the hosting server if this value is blank.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "metadataSourceQualifiedName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of a software server capability that is the owner/home of the metadata catalogued by the integration connector.", + "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": "Earliest time that the connector can run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stopTime", + "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": "Latest time that the connector can run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "refreshTimeInterval", + "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": "Describes how frequently the integration connector should run - in minutes.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "permittedSynchronization", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", + "name": "PermittedSynchronization", + "description": "Defines the synchronization rules between a third party technology and open metadata.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BothDirections", + "description": "Metadata exchange is permitted in both directions." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "ToThirdParty", + "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "FromThirdParty", + "description": "The third party technology is logically upstream and is publishing metadata to open metadata." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another synchronization rule." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Defines the permitted directions of flow of metadata updates between open metadata and a third party technology.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "generateIntegrationReport", + "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": "Should the integration daemon create integration reports based on the integration connector's activity? (Default is true.)", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4d7c43ec-983b-40e4-af78-6fb66c4f5136", + "name": "IntegrationGroup", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "includedInIntegrationGroups", + "attributeDescription": "An integration group that this integration connector is a member of.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db", + "name": "IntegrationConnector", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "registeredIntegrationConnectors", + "attributeDescription": "An integration connector that should run as part of the integration group.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PortDelegation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E", + "name": "PortDelegation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A relationship between a more granular and a more abstract port", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "delegatingFrom", + "attributeDescription": "Higher level Port", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "delegatingTo", + "attributeDescription": "Lower level port", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "ServerEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2b8bfab4-8023-4611-9833-82a0dc95f187", + "name": "ServerEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines an endpoint associated with a 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "servers", + "attributeDescription": "Server(s) supporting this endpoint.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "endpoints", + "attributeDescription": "Endpoints supported by this server.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "MoreInformation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f", + "name": "MoreInformation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to indicate that a referenceable provides additional information about another referenceable.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describes", + "attributeDescription": "Describes this core element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "providesMoreInformation", + "attributeDescription": "Provides more information about this referenceable.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8f1134f6-b9fe-4971-bc57-6e1b8b302b55", + "name": "ProjectHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A nesting relationship between projects.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managingProject", + "attributeDescription": "Project that oversees this project.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managedProject", + "attributeDescription": "Project that this project is responsible for managing.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AnnotationExtension": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "605aaa6d-682e-405c-964b-ca6aaa94be1b", + "name": "AnnotationExtension", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Additional information to augment an annotation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "extendedAnnotations", + "attributeDescription": "The annotations being extended.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "annotationExtensions", + "attributeDescription": "The annotations providing additional information.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceOperator": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "79ac27f6-be9c-489f-a7c2-b9add0bf705c", + "name": "DigitalServiceOperator", + "status": "ACTIVE_TYPEDEF", + "version": 4, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the organizations responsible for operating the digital services.", + "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": "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": "The extent to which this operator is responsible for the digital service operations.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "operatesDigitalServices", + "attributeDescription": "The digital services that this team/organization operates.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalServiceOperators", + "attributeDescription": "The unit (team, capability, ...) responsible for managing this digital service.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessCall": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "af904501-6347-4f52-8378-da50e8d74828", + "name": "ProcessCall", + "status": "ACTIVE_TYPEDEF", + "version": 4, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows a request-response call between two elements.", + "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": "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": "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 name of the call relationship.", + "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 and purpose of the call.", + "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": "Function that determines the subset of the data that flows.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "lineNumber", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Location of the call in the implementation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "caller", + "attributeDescription": "Call originator.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "called", + "attributeDescription": "Called element that performs the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "APIResponse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e8001de2-1bb1-442b-a66f-9addc3641eae", + "name": "APIResponse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API operation and its response structure.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedAsAPIResponse", + "attributeDescription": "API operations using this structure as the response.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "apiResponse", + "attributeDescription": "Response structure for this API operation.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "PeerDuplicateLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a94b2929-9e62-4b12-98ab-8ac45691e5bd", + "name": "PeerDuplicateLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between detected duplicate entities.", + "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": "statusIdentifier", + "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": "Status of the duplicate processing. Value defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "Source of the duplicate detection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information for the steward(s) relating to the duplicate detection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerDuplicateOrigin", + "attributeDescription": "Oldest element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerDuplicatePartner", + "attributeDescription": "Newest element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelGroupMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2dcfe62b-341c-4c3d-b336-a94a52c20556", + "name": "DesignModelGroupMembership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a design model element to a group.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b144ee2a-fa71-4897-b51a-dd5239c26910", + "name": "DesignModelGroup", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfModelGroups", + "attributeDescription": "Link to a list of groups this element is a member of.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "elementsInGroup", + "attributeDescription": "List of elements that belong to this group.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedIntegrationReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "83d12156-f8f3-4b4b-b31b-18c140df9aa3", + "name": "RelatedIntegrationReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links an integration report to the anchor entity it describes.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "anchorSubject", + "attributeDescription": "The anchor entity that the integration report describes.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b8703d3f-8668-4e6a-bf26-27db1607220d", + "name": "IntegrationReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "integrationReports", + "attributeDescription": "A description of the changes made to the anchor entity by an integration report.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaAttributeDefinition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f1e263-e24d-4f20-8c0d-b5e21232cd54", + "name": "SchemaAttributeDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between data field analysis and the identified schema attribute definition.", + "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": "assetGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 analyzed asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedSchemaAttributes", + "attributeDescription": "The analysis of the equivalent data fields from deployed assets.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaAttributeDefinition", + "attributeDescription": "Official schema attribute definition.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "DerivedSchemaTypeQueryTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1c2622b7-ac21-413c-89e1-6f61f348cd19", + "name": "DerivedSchemaTypeQueryTarget", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Details of how a derived schema element is calculated.", + "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": "queryId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for placeholder in derived schema type's formula.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "query", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 how the value(s) is/are retrieved.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedBy", + "attributeDescription": "Use of another schema type to derive all or part of this schema type's value.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "queryTarget", + "attributeDescription": "Used to provide data values to the other schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveredAnnotation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "51d386a3-3857-42e3-a3df-14a6cad08b93", + "name": "DiscoveredAnnotation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The annotations that make up a discovery analysis report.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "reportedAnnotations", + "attributeDescription": "The annotations providing the contents for the report.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "fromAnalysisReport", + "attributeDescription": "The report that the annotations belong to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "MapToElementType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8b9856b3-451e-45fc-afc7-fddefd81a73a", + "name": "MapToElementType", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the type of value for a map schema type.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "name": "MapSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapTo", + "attributeDescription": "Used in map.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapTo", + "attributeDescription": "Used in map to describe the range (value mapped to).", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NestedSchemaAttribute": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0ffb9d87-7074-45da-a9b0-ae0859611133", + "name": "NestedSchemaAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The direct parent-child relationship between attributes with an embedded type.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentAttribute", + "attributeDescription": "Schema attribute containing this attribute.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedAttributes", + "attributeDescription": "The attributes defining the internal structure of the parent attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SourcedFrom": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "87b7371e-e311-460f-8849-08646d0d6ad3", + "name": "SourcedFrom", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines source of the information for a referenceable that was created by copying from a template.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resultingElement", + "attributeDescription": "Element created from the template.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "templateElement", + "attributeDescription": "Template element providing information.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "TranslationLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "576228af-33ec-4588-ba4e-6a864a097e10", + "name": "TranslationLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links an entity to a collection of translated properties.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translates", + "attributeDescription": "Entity that is translated.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d7df0579-8671-48f0-a8aa-38a487d418c8", + "name": "TranslationDetail", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translation", + "attributeDescription": "Translation of entity for a single language.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CommunityMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7c7da1a3-01b3-473e-972e-606eff0cb112", + "name": "CommunityMembership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Associates an actor profile with a community.", + "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": "relationshipType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b0ef45bf-d12b-4b6f-add6-59c14648d750", + "name": "CommunityMembershipType", + "description": "Type of membership to a community.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Contributor", + "description": "Participant in the community." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Administrator", + "description": "Administrator of the community." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Leader", + "description": "Leader of the community." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Observer", + "description": "Observer of the community." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role in the community." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of membership to the community.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fbd42379-f6c3-4f08-b6f7-378565cda993", + "name": "Community", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfCommunity", + "attributeDescription": "Communities that the person is a member of.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "communityMembers", + "attributeDescription": "Members of the community.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternalIdScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8c5b1415-2d1f-4190-ba6c-1fdd47f03269", + "name": "ExternalIdScope", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Places where an external identifier is recognized.", + "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": "permittedSynchronization", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", + "name": "PermittedSynchronization", + "description": "Defines the synchronization rules between a third party technology and open metadata.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BothDirections", + "description": "Metadata exchange is permitted in both directions." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "ToThirdParty", + "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "FromThirdParty", + "description": "The third party technology is logically upstream and is publishing metadata to open metadata." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another synchronization rule." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Defines the permitted directions of flow of metadata updates between open metadata and a third party technology.", + "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": "Additional description of the type of synchronization occurring.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "scopedTo", + "attributeDescription": "Identifies where this external identifier is known.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "name": "ExternalId", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managedResources", + "attributeDescription": "Link to details of a resource that this component manages.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedKeyword": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62", + "name": "RelatedKeyword", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links search keywords that have similar meanings together.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "name": "SearchKeyword", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedKeyword", + "attributeDescription": "Keyword with similar meaning or usage.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "name": "SearchKeyword", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedKeyword", + "attributeDescription": "Keyword with similar meaning or usage.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AcceptedAnswer": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ecf1a3ca-adc5-4747-82cf-10ec590c5c69", + "name": "AcceptedAnswer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a comment as answering a question asked in another comment.", + "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": "isPublic", + "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 the attached answer visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "answeredQuestions", + "attributeDescription": "Questions that now has an accepted answer.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "acceptedAnswers", + "attributeDescription": "Accumulated answers.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceDefinitionMetric": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e076fbb3-54f5-46b8-8f1e-a7cb7e792673", + "name": "GovernanceDefinitionMetric", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance definition and a governance metric used to measure this definition.", + "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": "rationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Documents reasons for using the metric to measure the governance definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e", + "name": "GovernanceMetric", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "metrics", + "attributeDescription": "The metrics that measure the landscape against this governance definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "measuredDefinitions", + "attributeDescription": "The governance definitions that are measured by this metric.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssetSchemaType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "815b004d-73c6-4728-9dd9-536f4fe803cd", + "name": "AssetSchemaType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describesAssets", + "attributeDescription": "Asset that conforms to the schema type.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schema", + "attributeDescription": "Structure of the content of this asset.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "TopicSubscribers": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e", + "name": "TopicSubscribers", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links the list of subscribers to a topic.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "69751093-35f9-42b1-944b-ba6251ff513d", + "name": "SubscriberList", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subscribers", + "attributeDescription": "The endpoints subscribed to this topic.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "29100f49-338e-4361-b05d-7e4e8e818325", + "name": "Topic", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "topics", + "attributeDescription": "The topics used by this subscriber list.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "OrganizationalCapability": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "47f0ad39-db77-41b0-b406-36b1598e0ba7", + "name": "OrganizationalCapability", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Describes the relationship between a team and the business capabilities it supports.", + "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": "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 in the organization.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", + "name": "BusinessCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportsBusinessCapabilities", + "attributeDescription": "The business capabilities that this team supports.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingTeams", + "attributeDescription": "The teams that support this business capability.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ReplacementTerm": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed", + "name": "ReplacementTerm", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to a glossary term that is replacing an obsolete glossary term.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "replacedTerms", + "attributeDescription": "Replaced glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "replacementTerms", + "attributeDescription": "Replacement glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataFlow": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d2490c0c-06cc-458a-add2-33cf2f5dd724", + "name": "DataFlow", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows that data flows in one direction from one element to another.", + "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": "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": "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 name of the flow relationship.", + "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 and purpose of the flow.", + "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": "Function that determines the subset of the data that flows.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataSupplier", + "attributeDescription": "Caller element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataConsumer", + "attributeDescription": "Called element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "MetadataCohortPeer": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "954cdba1-3d69-4db1-bf0e-d59fd2c25a27", + "name": "MetadataCohortPeer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A metadata repository's registration with an open metadata cohort.", + "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": "registrationDate", + "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 first registered with the cohort.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893", + "name": "MetadataRepositoryCohort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "registeredWithCohorts", + "attributeDescription": "Identifies which cohorts this cohort member is registered with.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "42063797-a78a-4720-9353-52026c75f667", + "name": "CohortMember", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "cohortMembership", + "attributeDescription": "Members of this cohort.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConceptBeadRelationshipEnd": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1a379e55-a4c0-4289-a1a4-b89d257611d1", + "name": "ConceptBeadRelationshipEnd", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links one end of a concept bead link relationship to 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", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "attributeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for the relationship end.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "decoration", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a97d9167-7dd6-4dea-a8cf-c73c57a0f470", + "name": "ConceptModelDecoration", + "description": "Describes the type of relationship end.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Aggregation", + "description": "The relationship links an independent concept bead to a collection concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Composition", + "description": "The relationship links a sub-part to a composite." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Extension", + "description": "The relationship links an extension to a base concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Usage and lifecycle for this connection between the concept bead and the link.", + "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": "Position of this relationship in the concept bead's list of relationships.", + "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": "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": "uniqueValues", + "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": "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": "navigable", + "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 it possible to follow the link in this direction.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "13defd95-6452-4398-8382-e47f1a271eff", + "name": "ConceptBeadLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relationships", + "attributeDescription": "The relationships that the concept bead can be a part of.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "name": "ConceptBead", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "endBeads", + "attributeDescription": "The concept beads that are linked via this relationship.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedNoteLogEntry": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "38edecc6-f385-4574-8144-524a44e3e712", + "name": "AttachedNoteLogEntry", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a note log and one of its note log entries.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "logs", + "attributeDescription": "Logs that this entry relates.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", + "name": "NoteEntry", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "entries", + "attributeDescription": "Accumulated notes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CollectionMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5cabb76a-e25b-4bb5-8b93-768bbac005af", + "name": "CollectionMembership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a member of a collection.", + "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": "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 describing the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "membershipRationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 member is used, or why it is useful in this collection.", + "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": "Person, organization or automated process that created the membership relationship.", + "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": "a3bdb2ac-c28e-4e5a-8ab7-76aa01038832", + "name": "MembershipStatus", + "description": "Defines the provenance and confidence that a member belongs in a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Discovered", + "description": "The membership was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Assigned", + "description": "The membership was proposed by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Imported", + "description": "The membership was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Validated", + "description": "The membership created by an automated process has been validated and approved by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Deprecated", + "description": "The membership should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "Obsolete", + "description": "The membership must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another membership status." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "foundInCollections", + "attributeDescription": "Collections that link to this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "collectionMembers", + "attributeDescription": "Members of this collection.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ApprovedPurpose": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3", + "name": "ApprovedPurpose", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the proposes that processes/people have permission to process data for.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "approvedForPurposes", + "attributeDescription": "The people/processes that have permission to process data.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "name": "DataProcessingPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "approvedPurposes", + "attributeDescription": "The purposes (outcomes) that the people/processes have permission for.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ContractLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "33937ece-5ab6-4cd3-a348-b8196ffc3b4e", + "name": "ContractLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to the contract document.", + "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": "contractId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for the contract used in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "contractLiaison", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 actor to contact with queries relating to the contract.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "contractLiaisonTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of actor element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "contractLiaisonPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the actor element used as the identifier.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreements", + "attributeDescription": "Agreements related to the contract.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contracts", + "attributeDescription": "Details of the contract documents.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TargetForAction": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "46ec49bf-af66-4575-aab7-06ce895120cd", + "name": "TargetForAction", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The element(s) that the governance action will work on.", + "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": "actionTargetName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 to identify the action target to the governance service that processes it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionMessage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Message to provide additional information on the results of acting on the target by the governance service or the reasons for any failures.", + "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/time that work stopped on this element for the linked governance action.", + "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/time that work started on this element for the linked governance action.", + "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": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", + "name": "GovernanceActionStatus", + "description": "Defines the current execution status of a governance action.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Requested", + "description": "The governance action has been created and is pending." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Approved", + "description": "The governance action is approved to run." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Waiting", + "description": "The governance action is waiting for its start time or the right conditions to run." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Activating", + "description": "The governance service for the governance action is being initialized in the governance engine." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "InProgress", + "description": "The governance engine is running the associated governance service for the governance action." + }, + { + "headerVersion": 1, + "ordinal": 10, + "value": "Actioned", + "description": "The governance service for the governance action has successfully completed processing." + }, + { + "headerVersion": 1, + "ordinal": 11, + "value": "Invalid", + "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." + }, + { + "headerVersion": 1, + "ordinal": 12, + "value": "Ignored", + "description": "The governance action has not been run because a different governance action was chosen." + }, + { + "headerVersion": 1, + "ordinal": 13, + "value": "Failed", + "description": "The governance service for the governance action failed to execute." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Undefined or unknown governance action status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the work on this element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "identifiedActions", + "attributeDescription": "Governance action that is acting on this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "actionTarget", + "attributeDescription": "Element(s) to work on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConnectorImplementationChoice": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "633648f3-c951-4ad7-b975-9fc04e0f3d2e", + "name": "ConnectorImplementationChoice", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relates a connector category for a specific type of technology with the connector types that support it.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e", + "name": "ConnectorCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectorCategories", + "attributeDescription": "The categories that a connector type belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", + "name": "ConnectorType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectorTypes", + "attributeDescription": "The connector types that support the technology described in the connector category.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectManagement": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ac63ac45-a4d0-4fba-b583-92859de77dd8", + "name": "ProjectManagement", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The link between a project and its project manager role.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projectsManaged", + "attributeDescription": "The projects that are being managed by this project manager.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projectManagers", + "attributeDescription": "The roles for managing this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Stakeholder": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "efd8a136-0aea-4668-b91a-30f947e38b82", + "name": "Stakeholder", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the Actor Profiles that commissioned work (such as a project or a community) or a capability, service or assets.", + "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": "stakeholderRole", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that describes the role that the stakeholders will play in the operation of the Referenceable.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "commissioned", + "attributeDescription": "Team, project, community, asset, service, ... that was commissioned by the stakeholders.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "commissionedBy", + "attributeDescription": "Profiles of actors or roles that are stakeholders.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceActionFlow": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0", + "name": "GovernanceActionFlow", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a governance process and its first action.", + "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": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 guard passed to the first governance service to run in this process.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4d3a2b8d-9e2e-4832-b338-21c74e45b238", + "name": "GovernanceActionProcess", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "triggeredFrom", + "attributeDescription": "Governance process that describes an action flow.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "firstAction", + "attributeDescription": "First governance action in a governance action process.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SolutionComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114", + "name": "SolutionComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship showing the nesting structure of solution components.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSolutionComponents", + "attributeDescription": "The solution components that embed this component.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedSolutionComponents", + "attributeDescription": "The sub-parts of this solution component.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "APIOperations": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "03737169-ceb5-45f0-84f0-21c5929945af", + "name": "APIOperations", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API and its operations.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8", + "name": "APISchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInAPI", + "attributeDescription": "API that this operation belongs to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "containsOperations", + "attributeDescription": "Operations for this API type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LinkedExternalSchemaType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "9a5d78c2-1716-4783-bfc6-c300a9e2d092", + "name": "LinkedExternalSchemaType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links to a reusable schema type that is external to this schema.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSchema", + "attributeDescription": "Connection point for a reusable schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalSchemaType", + "attributeDescription": "The schema type that is being reused in another schema.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "RelationshipAnnotation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "73510abd-49e6-4097-ba4b-23bd3ef15baa", + "name": "RelationshipAnnotation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Annotation relating two referenceables.", + "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": "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": "discoveryReportGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 discovery analysis report that this relationship belongs to.", + "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": "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": "annotationStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", + "name": "AnnotationStatus", + "description": "Defines the status of an annotation.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "New", + "description": "The annotation is new." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewed", + "description": "The annotation has been reviewed by a steward." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Approved", + "description": "The annotation has been approved." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Actioned", + "description": "The request has been actioned." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Invalid", + "description": "The annotation is invalid or incorrect." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Ignore", + "description": "The annotation should be ignored." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Status of the processing as a result of the 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 + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedFromObjectAnnotations", + "attributeDescription": "The referenceables linked from.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedToObjectAnnotations", + "attributeDescription": "The referenceables linked to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "AssociatedGroup": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e47a19d0-7e12-4cf7-9ad7-50856da7faa2", + "name": "AssociatedGroup", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a security access control to a security group.", + "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": "operationName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 operation to that is controlled by the linked security group.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f53bd594-5f75-4cf9-9f77-f5c35396590e", + "name": "SecurityAccessControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInAccessControls", + "attributeDescription": "An access control definition that uses the security group.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "042d9b5c-677e-477b-811f-1c39bf716759", + "name": "SecurityGroup", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedSecurityGroups", + "attributeDescription": "The security groups to use to validate access for the operation.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernancePolicyLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0c42c999-4cac-4da4-afab-0e381f3a818e", + "name": "GovernancePolicyLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links related governance policies together.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkingPolicies", + "attributeDescription": "Policies that are dependent on this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedPolicies", + "attributeDescription": "Policies that further define aspects of this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveredDataField": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f2d263-e24d-4f20-8c0d-b5e22222cd54", + "name": "DiscoveredDataField", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Data field detected in asset during schema analysis.", + "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": "dataFieldPosition", + "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 data field in the parent annotation's list of data fields.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", + "name": "SchemaAnalysisAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaAnalysisAnnotation", + "attributeDescription": "The annotation collecting the results of the schema analysis.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "discoveredDataFields", + "attributeDescription": "The data fields discovered during schema analysis.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PersonRoleAppointment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4a316abe-bcce-4d11-ad5a-4bfb4079b80b", + "name": "PersonRoleAppointment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a person's roles.", + "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": "isPublic", + "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 the appointment visible to more than the role owner and appointee?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "rolePerformers", + "attributeDescription": "A person performing this role.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "performsRoles", + "attributeDescription": "A role performed by this person.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermTYPEDBYRelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "669e8aa4-c671-4ee7-8d03-f37d09b9d006", + "name": "TermTYPEDBYRelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the relationship between a spine attribute and its 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": "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 relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributesTypedBy", + "attributeDescription": "Attributes of this type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "types", + "attributeDescription": "Types for this attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "MapFromElementType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6189d444-2da4-4cd7-9332-e48a1c340b44", + "name": "MapFromElementType", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the type of the key for a map schema type.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "name": "MapSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapFrom", + "attributeDescription": "Used in map.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapFrom", + "attributeDescription": "Used in map to describe the domain (value mapped from).", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ValidValueMember": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6337c9cd-8e5a-461b-97f9-5151bcb97a9e", + "name": "ValidValueMember", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links valid value set to the values.", + "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": "isDefaultValue", + "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 the member the default value in the set?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7de10805-7c44-40e3-a410-ffc51306801b", + "name": "ValidValuesSet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValuesSet", + "attributeDescription": "The valid values set that this element belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfValidValuesSet", + "attributeDescription": "Description of a single valid value.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaTypeDefinition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f2d263-e24d-4f20-8c0d-b5e24648cd54", + "name": "SchemaTypeDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between schema analysis annotation and the identified schema type definition.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", + "name": "SchemaAnalysisAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedSchemaTypes", + "attributeDescription": "The analysis of the schema type for deployed assets.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaTypeDefinition", + "attributeDescription": "Official schema type definition.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "GovernanceResponsibilityAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "cb15c107-b7af-475d-aab0-d78b8297b982", + "name": "GovernanceResponsibilityAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a role that will perform a governance responsibility.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "performedByRoles", + "attributeDescription": "The roles assigned to this responsibility.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "89a76b24-deb8-45bf-9304-a578a610326f", + "name": "GovernanceResponsibility", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governanceResponsibilities", + "attributeDescription": "The responsibilities performed by this role.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Synonym": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "74f4094d-dba2-4ad9-874e-d422b69947e2", + "name": "Synonym", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms that have the same meaning.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "synonyms", + "attributeDescription": "Glossary terms with the same meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "synonyms", + "attributeDescription": "Glossary terms with the same meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaTypeOption": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "eb4f1f98-c649-4560-8a46-da17c02764a9", + "name": "SchemaTypeOption", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The list of alternative schema types.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", + "name": "SchemaTypeChoice", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaOptionalUses", + "attributeDescription": "Potential place where this schema type is used.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaOptionalUses", + "attributeDescription": "Schema where this schema type is reused.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataProcessingSpecification": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1dfdec0f-f206-4db7-bac8-ec344205fb3c", + "name": "DataProcessingSpecification", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the processing being performed by processes or people.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingElements", + "attributeDescription": "The people/processes performing the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingDescriptions", + "attributeDescription": "The description of the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "EmbeddedConnection": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f", + "name": "EmbeddedConnection", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a virtual connection and one of the connections it depends on.", + "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": "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 for the embedded connection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "arguments", + "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": "Additional arguments needed by the virtual connector when using each connection.", + "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": "Position that embedded connection should be processed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "82f9c664-e59d-484c-a8f3-17088c23a2f3", + "name": "VirtualConnection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingVirtualConnections", + "attributeDescription": "Virtual connections using this connection.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "embeddedConnections", + "attributeDescription": "Connections embedded in this virtual connection.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConnectionToAsset": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e777d660-8dbe-453e-8b83-903771f054c0", + "name": "ConnectionToAsset", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a connection and the description of the asset it can be used to access.", + "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": "assetSummary", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that is retrieved through this connection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connections", + "attributeDescription": "Connections to this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "asset", + "attributeDescription": "Asset that can be accessed with this connection.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "RegulationCertificationType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "be12ff15-0721-4a7e-8c98-334eaa884bdf", + "name": "RegulationCertificationType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a certification required by a regulation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3c4293d-8846-4500-b0c0-197d73aba8b0", + "name": "Regulation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedRegulations", + "attributeDescription": "Regulations that require this type of certification.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea", + "name": "CertificationType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "requiredCertifications", + "attributeDescription": "The certifications required by this regulation.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceActionRequestSource": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5323a705-4c1f-456a-9741-41fdcb8e93ac", + "name": "GovernanceActionRequestSource", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance action type and the governance engine that will execute it.", + "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": "originGovernanceService", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 qualifiedName of the governance service that caused the governance action to be created.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "originGovernanceEngine", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 qualifiedName of the governance engine that caused the governance action to be created.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestSourceName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 to identify the request source to the governance service that processes it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceActivity", + "attributeDescription": "Element(s) that caused this governance action to be created.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "identifiedActions", + "attributeDescription": "Governance actions that were initiated for the linked element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceRuleImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e701a5c8-c1ba-4b75-8257-e0a6569eda48", + "name": "GovernanceRuleImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the implementation of a governance rule.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Documents reasons for implementing the rule using this implementation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "name": "GovernanceRule", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementsGovernanceRules", + "attributeDescription": "The rules that are implemented by this component.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd", + "name": "DeployedSoftwareComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "The software components that implement this governance rule.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "IsATypeOfRelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "9b6a91b5-a339-4245-b208-040805f95a75", + "name": "IsATypeOfRelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines an inheritance relationship between two spine objects.", + "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": "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 relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "Inherited", + "attributeDescription": "Inherited (Subtypes) for this object.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "InheritedFrom", + "attributeDescription": "Inherited from type (Supertypes) for this object.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ServerAssetUse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "56315447-88a6-4235-ba91-fead86524ebf", + "name": "ServerAssetUse", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines that a server capability is using an asset.", + "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": "minimumInstances", + "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 running asset instances controlled by the software server capability.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "maximumInstances", + "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 running asset instances controlled by the software server 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": "Additional information on how the asset is used by the software server capability.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "useType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "09439481-9489-467c-9ae5-178a6e0b6b5a", + "name": "ServerAssetUseType", + "description": "Defines how a software server capability may use an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Governs", + "description": "The software server capability provides management or oversight of the asset." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Maintains", + "description": "The software server capability keeps the asset up-to-date." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Uses", + "description": "The software server capability consumes the content of the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Describes how the software server capability uses the asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumedBy", + "attributeDescription": "Capability consuming this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumedAsset", + "attributeDescription": "Asset that this software capability is dependent on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaTypeImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "eed5565d-7ac2-46fe-9a26-4722fad8d993", + "name": "SchemaTypeImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a schema type and an implementation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementationSchemaTypes", + "attributeDescription": "Logical structure for the data.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "Concrete implementation of the schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedTerm": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b1161696-e563-4cf9-9fd9-c0c76e47d063", + "name": "RelatedTerm", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between similar 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": "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "seeAlso", + "attributeDescription": "Related glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "seeAlso", + "attributeDescription": "Related glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceActionTypeExecutor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f672245f-35b5-4ca7-b645-014cf61d5b75", + "name": "GovernanceActionTypeExecutor", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance action type and the governance engine that will execute it.", + "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": "requestParameterFilter", + "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": "Which requestParameters to remove before calling governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionTargetFilter", + "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": "Which actionTargets to remove before calling governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 request type used to call the service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionTargetMap", + "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 action target to rename before calling the governance action. Map is from old name to new name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameters", + "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 configure the governance service for this type of request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameterMap", + "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 request parameters to rename before calling the governance action. Map is from old name to new name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportsGovernanceActionTypes", + "attributeDescription": "Governance action type that drives a governance engine.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governanceActionTypeExecutor", + "attributeDescription": "Governance engine that will run the governance action.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "APIHeader": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6", + "name": "APIHeader", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API operation and its header.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedAsAPIHeader", + "attributeDescription": "API operations using this structure as the header.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "apiHeader", + "attributeDescription": "Header structure for this API operation.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LibraryTermReference": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "38c346e4-ddd2-42ef-b4aa-55d53c078d22", + "name": "LibraryTermReference", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary term to a glossary term in an external glossary.", + "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": "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 corresponding element from the external glossary.", + "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 corresponding element from the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person who established the link to the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "lastVerified", + "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 when this reference was last checked.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localTerms", + "attributeDescription": "Related local glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalGlossaryTerms", + "attributeDescription": "Links to related external glossaries.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ImplementedBy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "28f63c94-aaef-4c84-98f7-d77aa605272e", + "name": "ImplementedBy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a step in the refinement of digital components and artifacts from design to concrete implementation.", + "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": "designStep", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Process that created the refinement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "role", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Role that this artifact plays in implementing the abstract representation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "transformation", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Transformation process used to create the refinement.", + "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 implementation in the context of the abstract representation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "derivedFrom", + "attributeDescription": "Abstract representation.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementedBy", + "attributeDescription": "Resulting refined element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceProcessImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4", + "name": "GovernanceProcessImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the implementation of a governance process.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Documents reasons for implementing the process using this implementation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea", + "name": "GovernanceProcess", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementsGovernanceProcesses", + "attributeDescription": "The processes that are implemented by this component.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "The processes that implement this governance process.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "OperatingPlatformManifest": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e5bd6acf-932c-4d9c-85ff-941a8e4451db", + "name": "OperatingPlatformManifest", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the base software installed on the operating platform.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "name": "OperatingPlatform", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "packagedInOperatingPlatforms", + "attributeDescription": "The operating platforms that use this collection of software packages.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "includesSoftwarePackages", + "attributeDescription": "The collection of software packages that are included in the operating platform.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "ITInfrastructureProfile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4c579e3d-a4ff-41c1-9931-33e6fc992f2b", + "name": "ITInfrastructureProfile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an ITProfile and the asset for the piece of infrastructure it describes.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describedByProfile", + "attributeDescription": "The IT infrastructure that is described by the IT profile.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "81394f85-6008-465b-926e-b3fae4668937", + "name": "ITProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedByAsset", + "attributeDescription": "Description of the user identifies used by the asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GroupedMedia": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7d881574-461d-475c-ab44-077451528cb8", + "name": "GroupedMedia", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a media file into a data set.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0075d603-1627-41c5-8cae-f5458d1247fe", + "name": "MediaCollection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataSetMembership", + "attributeDescription": "Identifies the data sets this media file belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "name": "MediaFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataSetMembers", + "attributeDescription": "Media files that make up this media collection.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NestedFile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4cb88900-1446-4eb6-acea-29cd9da45e63", + "name": "NestedFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The link between a data file and its containing folder.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "homeFolder", + "attributeDescription": "Identifies the containing folder of this datafile.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedFiles", + "attributeDescription": "Files stored in this folder.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermAnchor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1d43d661-bdc7-4a91-a996-3239b8f82e56", + "name": "TermAnchor", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a term to its owning glossary.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "anchor", + "attributeDescription": "Owning glossary.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "terms", + "attributeDescription": "Terms owned by this glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ForeignKey": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07", + "name": "ForeignKey", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The primary key for another column is stored in a relational column from another table to enable them to be joined.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "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 foreign key.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "name": "RelationalColumn", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "primaryKey", + "attributeDescription": "Relational column holding the primary key.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "name": "RelationalColumn", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "foreignKey", + "attributeDescription": "Use of primary key from another table to enable table joins.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveryEngineReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2c318c3a-5dc2-42cd-a933-0087d852f67f", + "name": "DiscoveryEngineReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A discovery analysis report created by a discovery engine.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "be650674-790b-487a-a619-0a9002488055", + "name": "OpenDiscoveryEngine", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceDiscoveryEngine", + "attributeDescription": "The discovery engine that produced the report.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "discoveryEngineAnalysisReports", + "attributeDescription": "The reports produced by this discovery engine.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "APIRequest": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4ab3b466-31bd-48ea-8aa2-75623476f2e2", + "name": "APIRequest", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API operation and its request structure.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedAsAPIRequest", + "attributeDescription": "API operations using this structure as the request body.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "apiRequest", + "attributeDescription": "Request structure for this API operation.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "CohortMemberMetadataCollection": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8b9dd3ea-057b-4709-9b42-f16098523907", + "name": "CohortMemberMetadataCollection", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The local metadata collection associated with a cohort peer.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "42063797-a78a-4720-9353-52026c75f667", + "name": "CohortMember", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "cohortMember", + "attributeDescription": "Cohort registry representing this metadata collection on the metadata highway.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976", + "name": "MetadataCollection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localMetadataCollection", + "attributeDescription": "Metadata to exchange with the cohorts.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "ReferenceableFacet": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "58c87647-ada9-4c90-a3c3-a40ace46b1f7", + "name": "ReferenceableFacet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a property facet and the resource it relates to.", + "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": "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": "Source of this property facet.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedEntity", + "attributeDescription": "Identifies which element this property facet belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6403a704-aad6-41c2-8e08-b9525c006f85", + "name": "PropertyFacet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "facets", + "attributeDescription": "Additional properties from different sources.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedDesignPattern": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6447c9cd-8e5a-461b-97f9-5151bcb97a9e", + "name": "RelatedDesignPattern", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links design patterns together.", + "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": "Definition of the relationship between the two design patterns.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6b60a73e-47bc-4096-9073-f94cab975958", + "name": "DesignPattern", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedDesignPattern", + "attributeDescription": "Another design pattern that operates in similar contexts.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6b60a73e-47bc-4096-9073-f94cab975958", + "name": "DesignPattern", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedDesignPattern", + "attributeDescription": "Another design pattern that operates in similar contexts.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e8303911-ba1c-4640-974e-c4d57ee1b310", + "name": "DigitalServiceDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying dependencies between digital services.", + "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": "delegationEscalationAuthority", + "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": "Can delegations and escalations flow on this relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "callsDigitalServices", + "attributeDescription": "The digital services dependent on the others.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "calledByDigitalServices", + "attributeDescription": "The digital services that the others depends on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NextGovernanceActionType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d9567840-9904-43a5-990b-4585c0446e00", + "name": "NextGovernanceActionType", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance actions in a governance action flow.", + "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": "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": "DEPRECATED_ATTRIBUTE", + "attributeDescription": "Trigger one or many next action instances? (deprecated)", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 guard that is returned by the previous action that means this next action will run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mandatoryGuard", + "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 guard mandatory for the next action to run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependedOnActionTypes", + "attributeDescription": "Governance Action Type caller.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "followOnActionTypes", + "attributeDescription": "Governance Action Type called.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ContactThrough": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6cb9af43-184e-4dfa-854a-1572bcf0fe75", + "name": "ContactThrough", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The contact details associated with an actor profile.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contactDetails", + "attributeDescription": "Contact details owner.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "79296df8-645a-4ef7-a011-912d1cdcf75a", + "name": "ContactDetails", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contacts", + "attributeDescription": "Contact information.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "License": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "35e53b7f-2312-4d66-ae90-2d4cb47901ee", + "name": "License", + "status": "ACTIVE_TYPEDEF", + "version": 4, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an asset and its license.", + "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": "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes about the license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodian", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person, engine or organization tht will ensure the license is honored.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licensee", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person or organization that holds the license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "start", + "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 for the license.", + "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": "licensedByPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the licensedBy property.", + "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": "licensedBy", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person or organization that owns the intellectual property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licensedByTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the licensedBy property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licenseePropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the licensee property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licenseGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 actual license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licenseeTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the licensee property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "end", + "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": "End date for the license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "conditions", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Any special conditions or endorsements over the basic license type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "licensed", + "attributeDescription": "Items licensed by this type of license.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", + "name": "LicenseType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "licenses", + "attributeDescription": "The types of licenses that apply.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "FolderHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "48ac9028-45dd-495d-b3e1-622685b54a01", + "name": "FolderHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A nested relationship between two file folders.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentFolder", + "attributeDescription": "Parent folder.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedFolder", + "attributeDescription": "Folders embedded in this folder.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "HostClusterMember": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1a1c3933-a583-4b0c-9e42-c3691296a8e0", + "name": "HostClusterMember", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a host as a member of a host cluster.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890", + "name": "HostCluster", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "hostCluster", + "attributeDescription": "Cluster managing this host.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managedHosts", + "attributeDescription": "Member of the host cluster.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LibraryCategoryReference": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3da21cc9-3cdc-4d87-89b5-c501740f00b2", + "name": "LibraryCategoryReference", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary category to a corresponding category in an external glossary.", + "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": "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 corresponding element from the external glossary.", + "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 corresponding element from the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person who established the link to the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "lastVerified", + "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 when this reference was last checked.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localCategories", + "attributeDescription": "Related local glossary categories.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalGlossaryCategories", + "attributeDescription": "Links to related external glossaries.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ZoneHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139", + "name": "ZoneHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Creates a controlling hierarchy for governance zones.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "290a192b-42a7-449a-935a-269ca62cfdac", + "name": "GovernanceZone", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "inheritsFromZone", + "attributeDescription": "The zone that provides additional governance requirements.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "290a192b-42a7-449a-935a-269ca62cfdac", + "name": "GovernanceZone", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "controlsZone", + "attributeDescription": "The zones that are also governed in the same way.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "OperatingPlatformUse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0943e0ba-73ac-476b-8ebe-2ef30ba44976", + "name": "OperatingPlatformUse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the operating platform installed on the IT Infrastructure asset.", + "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": "installTime", + "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": "Time that the software was installed on the IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployer", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person, organization or engine that installed the software.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifying property name of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "name": "OperatingPlatform", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "operatingPlatforms", + "attributeDescription": "Software installed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "installedOn", + "attributeDescription": "Where the operating platform is running.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceProduct": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "51465a59-c785-406d-929c-def34596e9af", + "name": "DigitalServiceProduct", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A digital product that is maintained by a digital service.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managingDigitalService", + "attributeDescription": "Digital service responsible for the production of the digital product.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalProducts", + "attributeDescription": "The associated digital products.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConceptBeadAttributeLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5bad1df2-664b-407b-8036-2855e2ede92f", + "name": "ConceptBeadAttributeLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a concept bead to its attributes.", + "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": "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": "Position of this relationship in the concept bead's list of relationships.", + "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": "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": "uniqueValues", + "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": "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": "navigable", + "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 it possible to follow the link in this direction.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "name": "ConceptBead", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentBead", + "attributeDescription": "Concept bead that this attribute belongs to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea", + "name": "ConceptBeadAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributes", + "attributeDescription": "Attribute detail for the concept bead.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedStorage": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2cf1e949-7189-4bf2-8ee4-e1318e59abd7", + "name": "AttachedStorage", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a host to a persistent storage volume.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "hosts", + "attributeDescription": "The hosts that are accessing the storage.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "14145458-f0d0-4955-8899-b8a2874708c9", + "name": "StorageVolume", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "storageVolumes", + "attributeDescription": "The storage available to a host.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProfileIdentity": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "01664609-e777-4079-b543-6baffe910ff1", + "name": "ProfileIdentity", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Correlates a user identity with an actor profile.", + "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": "roleTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 name of the PersonRole that the UserIdentity is used for.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "roleGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 unique identifier of the specific PersonRole that the UserIdentity is used for.", + "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": "A human readable description of the use of the UserIdentity by the actor.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "profile", + "attributeDescription": "Description of the person, organization or engine that uses this user identity.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", + "name": "UserIdentity", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "userIdentities", + "attributeDescription": "Authentication identifiers in use by the owner of this profile.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ToDoSource": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646", + "name": "ToDoSource", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The source of the to do, such as a person, meeting or a governance action.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "actionSource", + "attributeDescription": "Source of the to do request.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "name": "ToDo", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "actions", + "attributeDescription": "Requests to perform actions related to this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionPortDelegation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8335e6ed-fd86-4000-9bc5-5203062f28ba", + "name": "SolutionPortDelegation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Aligns ports from nested components with the parent's.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "alignsToPort", + "attributeDescription": "Encapsulating solution component's port", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "delegationPorts", + "attributeDescription": "Ports from nested components that align with the port from the encapsulating solution component.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Translation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6ae42e95-efc5-4256-bfa8-801140a29d2a", + "name": "Translation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms that provide different natural language translation of the same concept.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translations", + "attributeDescription": "Translations of glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translations", + "attributeDescription": "Translations of glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataProcessingTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a", + "name": "DataProcessingTarget", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the actions being performed on data.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7f53928f-9148-4710-ad37-47633f33cb08", + "name": "DataProcessingAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingActions", + "attributeDescription": "Actions being performed on the data.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingTarget", + "attributeDescription": "The data that is being acted upon.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SubjectAreaHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b", + "name": "SubjectAreaHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Creates a controlling hierarchy for subject areas.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72", + "name": "SubjectAreaDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "broaderSubjectArea", + "attributeDescription": "The subject area that describes a broader topic.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72", + "name": "SubjectAreaDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedSubjectArea", + "attributeDescription": "The subdivisions of the broader topic.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveredNestedDataField": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f2d263-e24d-4f20-8c0d-b5e12356cd54", + "name": "DiscoveredNestedDataField", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Nested data fields under a single parent node.", + "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": "dataFieldPosition", + "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": "Positional order of the data field with its parent data field.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentDataField", + "attributeDescription": "Parent node.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedDataFields", + "attributeDescription": "Nested data fields.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ReferenceValueAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "111e6d2e-94e9-43ed-b4ed-f0d220668cbf", + "name": "ReferenceValueAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Enables valid values to be used as tags to help group and locate referenceables.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes on the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 between 0 and 100 indicating the confidence that the match is correct.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attributeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 attribute that the reference data assignment represents.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedItem", + "attributeDescription": "An element that has been tagged by a valid value.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "referenceValue", + "attributeDescription": "A valid value that represents the meaning or classification of the assigned item.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Actions": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "aca1277b-bf1c-42f5-9b3b-fbc2c9047325", + "name": "Actions", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An action to change or support a specific rule, project, deliverable, situation or plan of action.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "toDoCause", + "attributeDescription": "Rule or meeting that is driving the need for the to do.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "name": "ToDo", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedActions", + "attributeDescription": "Potentially impacting requests for change.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TeamMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "name": "TeamMembership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the members of teams.", + "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": "position", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of membership position, if any.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "teamMembers", + "attributeDescription": "The members of the team.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfTeam", + "attributeDescription": "The team that this role is a member of.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SoftwarePackageDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2c05beaf-e313-47f8-ac18-2298140b2ad9", + "name": "SoftwarePackageDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows the software packages being used within an asset.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "runningWithAsset", + "attributeDescription": "Assets making use of software package.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependsOnSoftwarePackages", + "attributeDescription": "Collection of software packages.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TeamLeadership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "name": "TeamLeadership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the leaders of teams.", + "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": "position", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of leadership position, eg deputy.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "teamLeaders", + "attributeDescription": "The leaders of the team.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "leadsTeam", + "attributeDescription": "The team lead by this person role.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionLinkingWire": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "892a3d1c-cfb8-431d-bd59-c4d38833bfb0", + "name": "SolutionLinkingWire", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Connection between two solution ports that shows how data flows.", + "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": "informationSupplyChainSegmentGUIDs", + "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": "Unique identifier of information supply chain segments that this wire belongs to (typically only one).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectedPorts", + "attributeDescription": "Port that the wire connects to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectedPorts", + "attributeDescription": "Port that the wire connects to.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ControlFlow": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "35450726-1c32-4d41-b928-22db6d1ae2f4", + "name": "ControlFlow", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows that when one element completes processing, control passes to the next element.", + "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": "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 name of the control flow relationship.", + "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 and purpose of the control flow.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Function that must be true to travel down this control flow.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "currentStep", + "attributeDescription": "Element that executes first.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nextStep", + "attributeDescription": "Element that executes next.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "DiscoveryInvocationReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1744d72b-903d-4273-9229-de20372a17e2", + "name": "DiscoveryInvocationReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An analysis report from a discovery service.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "name": "OpenDiscoveryService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceDiscoveryService", + "attributeDescription": "The discovery service that produced the report.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "serviceDiscoveryAnalysisReports", + "attributeDescription": "The reports produced by this discovery service.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionPortSchema": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bf02c703-57a2-4ab7-b6db-f49b57b05985", + "name": "SolutionPortSchema", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the structure of data passed through a solution port.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describesSolutionPortData", + "attributeDescription": "Port that uses the schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "solutionPortSchema", + "attributeDescription": "Structure of the solution port's data.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "AssociatedSnippet": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6f89c320-22aa-4d99-9a97-442e8d214655", + "name": "AssociatedSnippet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an element such as a schema type or data class and an implementation snippet.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "snippetRelevantForElements", + "attributeDescription": "Element describing logical structure for data element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "49990755-2faa-4a62-a1f3-9124b9c73df4", + "name": "ImplementationSnippet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementationSnippetsForElement", + "attributeDescription": "Template implementation of the element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternalIdLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "28ab0381-c662-4b6d-b787-5d77208de126", + "name": "ExternalIdLink", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an external identifier and an asset or related 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": "lastSynchronized", + "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": "Timestamp documenting the last time the metadata in the external metadata source was synchronized with open metadata element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mappingProperties", + "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 to aid the mapping to the the element in an external metadata source.", + "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 the external identifier can be used.", + "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 how the external identifier relates to the resource.", + "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": "Details of where the external identifier was sourced from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resources", + "attributeDescription": "Resource being identified.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "name": "ExternalId", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "alsoKnownAs", + "attributeDescription": "Identifier used in an external system.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ResourceList": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "73cf5658-6a73-4ebc-8f4d-44fdfac0b437", + "name": "ResourceList", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links supporting resources to a referenceable (typically an Actor Profile, Governance Domain, Project, Meeting or Community).", + "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": "resourceUse", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 resource is used, or why it is useful.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "watchResource", + "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": "Indicator whether the anchor should receive notifications of changes to the resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resourceListAnchors", + "attributeDescription": "Referenceable objects that are using the linked to resource.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingResources", + "attributeDescription": "Resources identified as of interest to the anchor.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CategoryHierarchyLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "71e4b6fb-3412-4193-aff3-a16eccd87e8e", + "name": "CategoryHierarchyLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship between two glossary categories used to create nested categories.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "superCategory", + "attributeDescription": "Identifies the parent category.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subcategories", + "attributeDescription": "Glossary categories nested inside this category.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PreferredTerm": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a", + "name": "PreferredTerm", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to an alternative term that the organization prefer is used.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "alternateTerms", + "attributeDescription": "Alternative glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "preferredTerms", + "attributeDescription": "Related glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionBlueprintComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f1ae975f-f11a-467b-8c7a-b023081e4712", + "name": "SolutionBlueprintComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a solution blueprint and a solution component.", + "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": "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 component's role in the solution.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", + "name": "SolutionBlueprint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSolutionBlueprints", + "attributeDescription": "The solutions where this component features.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "containsSolutionComponents", + "attributeDescription": "List of solution components that make up the solution.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataClassHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6b947ccc-1a70-4785-9ca3-d6326bc51291", + "name": "DataClassHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a data class to another in a parent child hierarchy.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "superDataClass", + "attributeDescription": "Data class that is the more abstract.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subDataClasses", + "attributeDescription": "Data classes that are more concrete.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c5cb1362-07f6-486b-b80b-ba7922cacee9", + "name": "DesignModelImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a concept model to an implementation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementationFollowingModel", + "attributeDescription": "Definition of an implementation of the model.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "modelDescribingBehavior", + "attributeDescription": "Descriptive abstraction.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceResults": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "89c3c695-9e8d-4660-9f44-ed971fd55f88", + "name": "GovernanceResults", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance metric and a data set used to gather measurements from the landscape.", + "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": "query", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Defines how the data items from the data set are converted in measurements for the metric.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e", + "name": "GovernanceMetric", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "metrics", + "attributeDescription": "The governance metrics that are captured in this data set.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "measurements", + "attributeDescription": "The data set that captures the measurements for this governance metric.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelElementsInScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4ff6d91b-3836-4ba2-9ca9-87da91081faa", + "name": "DesignModelElementsInScope", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a model to an implementation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "788957f7-a203-45bd-994d-0ab018275821", + "name": "DesignModelScope", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInScope", + "attributeDescription": "Link to a scope where this element is used.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "inScopeModelElements", + "attributeDescription": "List of elements that belong to this scope.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttributeForSchema": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "86b176a2-015c-44a6-8106-54d5d69ba661", + "name": "AttributeForSchema", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a complex schema type and its attributes.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4", + "name": "ComplexSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentSchemas", + "attributeDescription": "Schema types using this attribute.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributes", + "attributeDescription": "The attributes defining the internal structure of the schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssetLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1", + "name": "AssetLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Location 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "knownLocations", + "attributeDescription": "Places where this asset is sited.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localAssets", + "attributeDescription": "Assets sited at this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "IncidentDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "017be6a8-0037-49d8-af5d-c45c41f25e0b", + "name": "IncidentDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an incident report and its predecessors.", + "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": "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 dependency.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "priorReportedIncidents", + "attributeDescription": "Previous reports on the same or related incident.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "followOnReportedIncidents", + "attributeDescription": "Subsequent reports on the same or related incident.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaAttributeType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2d955049-e59b-45dd-8e62-cde1add59f9e", + "name": "SchemaAttributeType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The schema type for an attribute.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSchemas", + "attributeDescription": "Occurrences of this schema type in other schemas.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "type", + "attributeDescription": "The structure of this attribute.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "GovernanceImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "787eaf46-7cf2-4096-8d6e-671a0819d57e", + "name": "GovernanceImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a governance control and the governance driver it is implementing.", + "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": "rationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 reasons for implementing the policy using this control.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "policies", + "attributeDescription": "The policies that are supported by this control.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "name": "GovernanceControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "The governance controls that implement this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LinkedMedia": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "cee3a190-fc8d-4e53-908a-f1b9689581e0", + "name": "LinkedMedia", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a media file to another media file and describes relationship.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "name": "MediaFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedMediaFiles", + "attributeDescription": "Link to related media files.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "name": "MediaFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedMediaFiles", + "attributeDescription": "Link to related media files.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssignmentScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e3fdafe3-692a-46c6-a595-c538cc189dd9", + "name": "AssignmentScope", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a profile, role or project to the elements that they are responsible for managing.", + "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": "assignmentType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 is the scope or nature of the assignment.", + "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": "Further clarification on the assignment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedActors", + "attributeDescription": "Person, team, project or other type of actor that has been assigned.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedScope", + "attributeDescription": "Elements describing the resources or action the the actors are responsible for.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ValidValuesImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d9a39553-6a47-4477-a217-844300c07cf2", + "name": "ValidValuesImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to an asset that implements the list of valid values.", + "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": "symbolicName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 value value used in code.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "implementationValue", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Value in the asset that maps to this valid value if different from the preferred value.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "additionalValues", + "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 values for additional columns or fields in the reference data store.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValues", + "attributeDescription": "The valid values set that this element implements.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValuesImplementation", + "attributeDescription": "The asset where the valid values are implemented.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "AssociatedLog": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0999e2b9-45d6-42c4-9767-4b74b0b48b89", + "name": "AssociatedLog", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines destination information for the log of activity associated with an element.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "logSubjects", + "attributeDescription": "Elements that the log records describe.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedLogs", + "attributeDescription": "Destinations for log records.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternallySourcedGlossary": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7786a39c-436b-4538-acc7-d595b5856add", + "name": "ExternallySourcedGlossary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an open metadata glossary and a related glossary stored outside of the open metadata ecosystem.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localGlossary", + "attributeDescription": "Local glossary that relates to this external glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalGlossaryLink", + "attributeDescription": "Link to a related external glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternalReferenceLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7d818a67-ab45-481c-bc28-f6b1caf12f06", + "name": "ExternalReferenceLink", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to more information.", + "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": "pages", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages in the external reference that this link refers.", + "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 relevance of this reference to the linked item.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Local identifier for the reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedItem", + "attributeDescription": "Item that is referencing this work.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalReference", + "attributeDescription": "Link to more information from an external source.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "MediaReference": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1353400f-b0ab-4ab9-ab09-3045dd8a7140", + "name": "MediaReference", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to related media such as images, videos and audio.", + "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": "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 relevance of this media to the linked item.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaUsageOtherId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 code (typically a valid value definition) that defines the media use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Local identifier for the media.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaUsage", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c6861a72-7485-48c9-8040-876f6c342b61", + "name": "MediaUsage", + "description": "Defines how a related media reference should be used.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Icon", + "description": "Provides a small image to represent the asset in tree views and graphs." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Thumbnail", + "description": "Provides a small image about the asset that can be used in lists." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Illustration", + "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "UsageGuidance", + "description": "Provides guidance to a person on how to use the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Specific media usage by the consumer that overrides the media usage document in the related media.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumingItem", + "attributeDescription": "Item that is referencing this work.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "747f8b86-fe7c-4c9b-ba75-979e093cc307", + "name": "RelatedMedia", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedMedia", + "attributeDescription": "Link to external media.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ValidValue": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "707a156b-e579-4482-89a5-de5889da1971", + "name": "ValidValue", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms where one defines one of the data values for the another.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValueFor", + "attributeDescription": "Glossary terms for data items that can be set to this value.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValues", + "attributeDescription": "Glossary terms for data values that can be used with data items represented by this glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExecutionPointUse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3eb268f4-9419-4281-a487-d25ccd88eba3", + "name": "ExecutionPointUse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance execution point definition and the governance definition it supports.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportsGovernanceDefinitions", + "attributeDescription": "Governance definition that is implemented by this execution point.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", + "name": "ExecutionPointDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "executedThrough", + "attributeDescription": "Description of the execution points that support the implementation of this governance definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AgreementItem": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a540c361-0ed1-45d6-b525-007592ae806d", + "name": "AgreementItem", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An identified item in an agreement.", + "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": "agreementItemId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 item within the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "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": "agreementStart", + "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 this item becomes active in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "agreementEnd", + "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 this item becomes inactive in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "usageMeasurements", + "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": "Measurements of the actual use of this item under the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreementContents", + "attributeDescription": "The agreement that the item relates to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreementItems", + "attributeDescription": "Specific items in the agreement.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "TeamStructure": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5ebc4fb2-b62a-4269-8f18-e9237a2229ca", + "name": "TeamStructure", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a team hierarchy.", + "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": "delegationEscalationAuthority", + "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": "Can delegations and escalations flow on this relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "superTeam", + "attributeDescription": "The aggregating team.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subTeam", + "attributeDescription": "The teams where work is delegated to.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NextGovernanceAction": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4efd16d4-f397-449c-a75d-ebea42fe581b", + "name": "NextGovernanceAction", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Linking of governance actions to show execution sequence.", + "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": "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": "DEPRECATED_ATTRIBUTE", + "attributeDescription": "Trigger one or many next action instances? (deprecated)", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 guard that is returned by the previous action that means this next action will run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mandatoryGuard", + "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 guard mandatory for the next action to run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "previousActions", + "attributeDescription": "Governance action that triggered this governance action.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "followOnActions", + "attributeDescription": "Governance actions that should run next.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ProjectDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5b6a56f1-68e2-4e10-85f0-fda47a4263fd", + "name": "ProjectDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A dependency relationship between projects.", + "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": "dependencySummary", + "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": "Reasons for the project dependency.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependentProject", + "attributeDescription": "Projects that are dependent on this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependsOnProjects", + "attributeDescription": "Projects that are delivering resources or outcomes needed by this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DetailedProcessingActions": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0ac0e793-6727-45d2-9403-06bd19d9ce2e", + "name": "DetailedProcessingActions", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the individual actions in a data processing description.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentProcessingDescriptions", + "attributeDescription": "The aggregating processing descriptions.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7f53928f-9148-4710-ad37-47633f33cb08", + "name": "DataProcessingAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingActions", + "attributeDescription": "The individual actions that make up the data processing description.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedTermsAndConditions": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8292343f-6a96-4ca8-a447-38f734c75634", + "name": "AttachedTermsAndConditions", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The terms and conditions 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": "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 related terms and conditions.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subjectOfTermsAndConditions", + "attributeDescription": "Entity that the terms and condition applied.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "2ddc42d3-7791-4b4e-a064-91df9300290a", + "name": "TermsAndConditions", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "termsAndConditions", + "attributeDescription": "Entitlements, restrictions and obligations.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "InformationSupplyChainLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "207e5130-ab7c-4048-9249-a63a43c13d60", + "name": "InformationSupplyChainLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two related information supply chain segments -or to their source or destination.", + "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": "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplyFrom", + "attributeDescription": "Logical source of the information supply chain.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplyTo", + "attributeDescription": "Logical destination of an information supply chain.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernedBy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "89c3c695-9e8d-4660-9f44-ed971fd55f89", + "name": "GovernedBy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows the resources that are governed by a specific governance definition.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governedBy", + "attributeDescription": "The governance definition that defines how this element is governed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governedElements", + "attributeDescription": "An element that is governed according to the governance definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalSupport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f", + "name": "DigitalSupport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the digital services supporting each business capability.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usesDigitalServices", + "attributeDescription": "The digital services that this business capability depends on.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", + "name": "BusinessCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumingBusinessCapabilities", + "attributeDescription": "The business capabilities that depend on the digital services.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NestedLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f82a96c2-95a3-4223-88c0-9cbf2882b772", + "name": "NestedLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between two locations to show one is nested inside another.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "groupingLocations", + "attributeDescription": "Location that is covering the broader area.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedLocations", + "attributeDescription": "Location that is nested in this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProfileLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4", + "name": "ProfileLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies an association between an Actor Profile and a Location, such as a person's primary work location.", + "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": "associationType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that describes the purpose of the association.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedProfiles", + "attributeDescription": "Profiles of actors associated with the location.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedLocations", + "attributeDescription": "Locations that the actor is associated with.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LinkedFile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "970a3405-fde1-4039-8249-9aa5f56d5151", + "name": "LinkedFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A data file that is linked to a file folder (rather than stored in it).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedFolders", + "attributeDescription": "Folders that this file is linked to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedFiles", + "attributeDescription": "Files linked to the folder.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermCategorization": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "696a81f5-ac60-46c7-b9fd-6979a1e7ad27", + "name": "TermCategorization", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary term into a glossary category.", + "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": "Explanation of why this term is in this categorization.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Status of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "categories", + "attributeDescription": "Glossary categories that this term is linked to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "terms", + "attributeDescription": "Glossary terms linked to this category.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "APIEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "de5b9501-3ad4-4803-a8b2-e311c72a4336", + "name": "APIEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The endpoint for a deployed API.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedAPIs", + "attributeDescription": "APIs that can be called from this endpoint.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "accessEndpoints", + "attributeDescription": "Endpoints used to call this API.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "VisibleEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb", + "name": "VisibleEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows that network that an endpoint is visible through.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "visibleEndpoints", + "attributeDescription": "Endpoint callable through network.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "name": "Network", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "visibleInNetwork", + "attributeDescription": "Networks from which the endpoint can be called.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConnectionEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "887a7132-d6bc-4b92-a483-e80b60c86fb2", + "name": "ConnectionEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a connection and the endpoint that the connector should use.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectionEndpoint", + "attributeDescription": "Server endpoint that provides access to the asset.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connections", + "attributeDescription": "Connections to this endpoint.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CategoryAnchor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c628938e-815e-47db-8d1c-59bb2e84e028", + "name": "CategoryAnchor", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Connects a glossary category with its owning glossary.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "anchor", + "attributeDescription": "Owning glossary for this category.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "categories", + "attributeDescription": "Categories owned by this glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SupportedSoftwareCapability": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2480aa71-44c5-414d-8b32-9c4340786d77", + "name": "SupportedSoftwareCapability", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a software capability that is deployed to an instance of IT infrastructure.", + "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": "deploymentTime", + "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": "Time that the software capability was deployed to the IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployer", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person, organization or engine that deployed the software capability.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifying property name of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "capabilityStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", + "name": "OperationalStatus", + "description": "Defines whether a component is operational.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Disabled", + "description": "The component is not operational." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Enabled", + "description": "The component is operational." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The operational status of the software capability on this IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "hostedByDeployedITInfrastructure", + "attributeDescription": "IT infrastructure hosting this capability.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "capabilities", + "attributeDescription": "Capabilities deployed on this IT infrastructure.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectTeam": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "746875af-2e41-4d1f-864b-35265df1d5dc", + "name": "ProjectTeam", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The team assigned to a project.", + "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": "teamRole", + "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": "Description of the role of the team in the project.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projectFocus", + "attributeDescription": "Projects that a team is working on.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingActors", + "attributeDescription": "People and teams supporting this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessOutput": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e3e40f99-70fe-478c-9676-78a50cded70b", + "name": "ProcessOutput", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The feed of data from a process.", + "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": "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 data feed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "producedByProcess", + "attributeDescription": "Process that is creating and updating the information in the asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "processOutputData", + "attributeDescription": "Asset receiving output data.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LineageMapping": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff", + "name": "LineageMapping", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two schema attributes.", + "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": "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 name of the lineage flow.", + "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 and purpose of the lineage flow.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceElement", + "attributeDescription": "Source Attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "targetElement", + "attributeDescription": "Target Attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ValidValuesAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c5d48b73-eadd-47db-ab64-3be99b2fb32d", + "name": "ValidValuesAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a referenceable to its 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", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "strictRequirement", + "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": "Only values from the ValidValues set/definition are allowed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValuesConsumer", + "attributeDescription": "The valid values set that this element belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValues", + "attributeDescription": "A definition of the valid values for this element.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "Peer": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4a316abe-bccd-4d11-ad5a-4bfb4079b80b", + "name": "Peer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a person's peer network.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peers", + "attributeDescription": "List of this person's peer network.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peers", + "attributeDescription": "List of this person's peer network.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ActionAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "af2b5fab-8f83-4a2b-b749-1e6219f61f79", + "name": "ActionAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A person who has been assigned to complete the to do (action).", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedResources", + "attributeDescription": "One or more people assigned to complete the action (to do).", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedActor", + "attributeDescription": "The person/people assigned to perform the action(s) requested in the to do.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceDesign": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2", + "name": "DigitalServiceDesign", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the solution blueprint for 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describesDigitalService", + "attributeDescription": "Digital service described by the blueprint.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", + "name": "SolutionBlueprint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalServiceDesigns", + "attributeDescription": "The difference versions of the digital service's designs.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "Certification": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "390559eb-6a0c-4dd7-bc95-b9074caffa7f", + "name": "Certification", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An awarded certification of a specific type.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes about the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodian", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person, engine or organization that will ensure the certification is honored.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certifiedByTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the certifiedBy property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certificateGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 actual certificate.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "start", + "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 for the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "recipientPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the recipient property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certifiedByPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the certifiedBy property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "recipient", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person or organization that received the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "end", + "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": "End date for the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "recipientTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the recipient property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "conditions", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Any special conditions or endorsements over the basic certification type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certifiedBy", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person or organization awarded the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "certifies", + "attributeDescription": "Items certified by this type of certification.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea", + "name": "CertificationType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "certifications", + "attributeDescription": "The types of certifications that apply.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ConsolidatedDuplicateLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82", + "name": "ConsolidatedDuplicateLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a detected duplicate entity and an entity that contains the combined values of this entity and its other duplicates.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consolidatedDuplicateOrigin", + "attributeDescription": "Detected duplicate element - the source of the properties.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consolidatedDuplicateResult", + "attributeDescription": "Element resulting from combining the duplicate entities.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "NetworkGatewayLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3", + "name": "NetworkGatewayLink", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link from a network to one of its network gateways.", + "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 for the network mapping.", + "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 and purpose of the network mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "externalEndpointAddress", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Network address used by callers to the network gateway.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "internalEndpointAddress", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Network address that the network gateway maps the request to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9bbae94d-e109-4c96-b072-4f97123f04fd", + "name": "NetworkGateway", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "gateways", + "attributeDescription": "Gateways to other networks.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "name": "Network", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "networkConnections", + "attributeDescription": "Connections to different networks.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ConnectionConnectorType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96", + "name": "ConnectionConnectorType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a connection and the connector type that should be used.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connections", + "attributeDescription": "Connections using this connector type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", + "name": "ConnectorType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectorType", + "attributeDescription": "Type of connector to use for the asset.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "Antonym": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ea5e126a-a8fa-4a43-bcfa-309a98aa0185", + "name": "Antonym", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms that have the opposite meaning.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "antonyms", + "attributeDescription": "Glossary terms with the opposite meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "antonyms", + "attributeDescription": "Glossary terms with the opposite meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GraphEdgeLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "503b4221-71c8-4ba9-8f3d-6a035b27971c", + "name": "GraphEdgeLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A relationship between a graph edge and a vertex.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", + "name": "GraphEdge", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "edges", + "attributeDescription": "Edges for this vertex.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1252ce12-540c-4724-ad70-f70940956de0", + "name": "GraphVertex", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "vertices", + "attributeDescription": "Vertices for this edge.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GlossaryTermEvolution": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b323c9cf-f254-49c7-a391-11222e9da70f", + "name": "GlossaryTermEvolution", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a live glossary term with a future version of the term.", + "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": "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": "Short description of the update.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c04e29b2-2d66-48fc-a20d-e59895de6040", + "name": "ControlledGlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "glossaryTermUpdates", + "attributeDescription": "A glossary term that contains proposed updates to the live glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "liveGlossaryTerm", + "attributeDescription": "The approved term that is in use.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SupportedGovernanceService": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2726df0e-4f3a-44e1-8433-4ca5301457fd", + "name": "SupportedGovernanceService", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance engine and one of its services.", + "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": "serviceRequestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Request type supported by the governance action service (overrides requestType on call to governance service if specified).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 request type used to call the service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameters", + "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 configure the governance service for this type of request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "calledFromGovernanceEngines", + "attributeDescription": "Governance Engine making use of the governance service.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "191d870c-26f4-4310-a021-b8ca8772719d", + "name": "GovernanceService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedGovernanceServices", + "attributeDescription": "Governance service that is part of the governance engine.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "DigitalServiceManagement": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "91ff7542-c275-4cd3-b367-97eec3360422", + "name": "DigitalServiceManagement", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the individual responsible for each digital service.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managesDigitalServices", + "attributeDescription": "The digital services that this individual manages.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalServiceManagers", + "attributeDescription": "The roles for managing this digital service.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ISARelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "50fab7c7-68bc-452f-b8eb-ec76829cac85", + "name": "ISARelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a more general glossary term and a more specific definition.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "classifies", + "attributeDescription": "More specific glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "isA", + "attributeDescription": "More general glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Meetings": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a05f918e-e7e2-419d-8016-5b37406df63a", + "name": "Meetings", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A meeting about a specific project, deliverable, situation or plan of action.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bf90c79-32f4-47ad-959c-8fff723fe744", + "name": "Meeting", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "meetings", + "attributeDescription": "Related meetings.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "meetingOwner", + "attributeDescription": "Person, project, community or team that called the meeting.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SearchKeywordLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d2f8df24-6905-49b8-b389-31b2da156ece", + "name": "SearchKeywordLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Provides a link to a keyword that helps to identify specific elements in a search.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedElements", + "attributeDescription": "Element described by the search keyword.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "name": "SearchKeyword", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "searchKeywords", + "attributeDescription": "Keywords to describe the element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceControlLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "806933fb-7925-439b-9876-922a960d2ba1", + "name": "GovernanceControlLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two related governance controls.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "name": "GovernanceControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkingControls", + "attributeDescription": "Governance controls that ate dependent on this control.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "name": "GovernanceControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedControls", + "attributeDescription": "Governance controls that support the implementation of this control.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelOwnership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d57043c2-eeab-4167-8d0d-2223af8aee93", + "name": "DesignModelOwnership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links design model elements to their owning model.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "name": "DesignModel", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "owningDesignModel", + "attributeDescription": "Owning model.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "designModelElements", + "attributeDescription": "List of elements that belong to this model.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedRating": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344", + "name": "AttachedRating", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a rating to an item.", + "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": "isPublic", + "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 the attached rating visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "ratingAnchor", + "attributeDescription": "Element that is rated.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7299d721-d17f-4562-8286-bcd451814478", + "name": "Rating", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "starRatings", + "attributeDescription": "Accumulated ratings.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataClassAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4df37335-7f0c-4ced-82df-3b2fd07be1bd", + "name": "DataClassAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a data class to an asset or schema element to define its logical data 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": "method", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Method used to identify data class.", + "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": "2611892f-0527-478f-8843-a3aa2b9abb47", + "name": "DataClassAssignmentStatus", + "description": "Defines the provenance and confidence of a data class assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The data class assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The data class assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The data class assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The data class assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The data class assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data class assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another data class assignment status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "partialMatch", + "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": "Are there data values outside of the data class specification?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the data class assignment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "threshold", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "52aeb769-37b7-4b30-b949-ddc7dcebcfa2", + "name": "float", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_FLOAT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "What was the threshold result used to determine that the data class matched.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "valueFrequency", + "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": "How often does the data class specification match the data values.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for validating the data class assignment.", + "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": "Person, organization or automated process that created the data class assignment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "elementsAssignedToDataClass", + "attributeDescription": "Elements identified as managing data values that match the specification of a data class.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataClassesAssignedToElement", + "attributeDescription": "Logical data type for this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedNoteLog": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4f798c0c-6769-4a2d-b489-d2714d89e0a4", + "name": "AttachedNoteLog", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a note log to an item.", + "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": "isPublic", + "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 the attached note log visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describes", + "attributeDescription": "Subject of the note log.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "noteLogs", + "attributeDescription": "Log of related notes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CrowdSourcingContribution": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4db83564-b200-4956-94a4-c95a5c30e65a", + "name": "CrowdSourcingContribution", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines one of the actors contributing content to a new description or asset.", + "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": "roleType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "0ded50c2-17cc-4ecf-915e-908e66dbb27f", + "name": "CrowdSourcingRole", + "description": "Type of contributor to new information and/or assets.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Proposer", + "description": "Actor that creates the initial version." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewer", + "description": "Actor that provided feedback." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Supporter", + "description": "Actor that agrees with the definition." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Approver", + "description": "Actor that declares the definition should be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of contribution.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributions", + "attributeDescription": "Items that this person has contributed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributors", + "attributeDescription": "The person/people making the contribution.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "InformationSupplyChainComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "fcdccfa3-e9f0-4543-8720-1958799fb6dc", + "name": "InformationSupplyChainComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the segments in an information supply chain.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fa6de61d-98cb-48c4-b21f-ab7186235fd4", + "name": "InformationSupplyChain", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "informationSupplyChains", + "attributeDescription": "Owning information supply chain.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1", + "name": "InformationSupplyChainSegment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "segments", + "attributeDescription": "A role performed by this person.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "70dbbda3-903f-49f7-9782-32b503c43e0e", + "name": "ProcessHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A hierarchical relationship between processes.", + "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": "containmentType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1bb4b908-7983-4802-a2b5-91b095552ee9", + "name": "ProcessContainmentType", + "description": "The containment relationship between two processes.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "OWNED", + "description": "The parent process owns the child process in the relationship, such that if the parent is removed the child should also be removed. A child can have at most one such parent." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "USED", + "description": "The child process is simply used by the parent. A child process can have many such relationships to parents." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "OTHER", + "description": "None of the above." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The type of containment that exists between the related processes.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentProcess", + "attributeDescription": "The more abstract or higher-level process.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "childProcess", + "attributeDescription": "The more detailed or lower-level process.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AdjacentLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "017d0518-fc25-4e5e-985e-491d91e61e17", + "name": "AdjacentLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between two locations that are next to one another.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerLocations", + "attributeDescription": "Location that is adjacent to this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerLocations", + "attributeDescription": "Location that is adjacent to this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SemanticAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e6670973-645f-441a-bec7-6f5570345b92", + "name": "SemanticAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary term to another element such as an asset or schema element to define its meaning.", + "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 relationship.", + "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 describing the relationship.", + "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": "c8fe36ac-369f-4799-af75-46b9c1343ab3", + "name": "TermAssignmentStatus", + "description": "Defines the provenance and confidence of a term assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The term assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The term assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The term assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The term assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The term assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The term assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term assignment status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedElements", + "attributeDescription": "Elements identified as managing data that has the same meaning as this glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "meaning", + "attributeDescription": "Semantic definition for this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AgreementActor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1c811d0b-e9ce-44af-b6ed-133e73322e32", + "name": "AgreementActor", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An actor identified in an agreement.", + "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": "actorName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 identify a specific actor in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedAgreements", + "attributeDescription": "The agreements that include the actor.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreementActors", + "attributeDescription": "The actors that are named in the agreement.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "IncidentOriginator": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e490772e-c2c5-445a-aea6-1aab3499a76c", + "name": "IncidentOriginator", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an incident report and its originator (person, process, engine, ...).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "originators", + "attributeDescription": "Source(s) of the incident report.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resultingIncidentReports", + "attributeDescription": "Descriptions of detected incidents.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PortSchema": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "B216fA00-8281-F9CC-9911-Ae6377f2b457", + "name": "PortSchema", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a Port and a SchemaType", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "port", + "attributeDescription": "Port", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "SchemaType", + "attributeDescription": "SchemaType", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "AttachedTag": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4b1641c4-3d1a-4213-86b2-d6968b6c65ab", + "name": "AttachedTag", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links an informal tag to an item.", + "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": "isPublic", + "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 the attached tag visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "taggedElement", + "attributeDescription": "Element that is tagged.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ba846a7b-2955-40bf-952b-2793ceca090a", + "name": "InformalTag", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "tags", + "attributeDescription": "Accumulated tags.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermHASARelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c", + "name": "TermHASARelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the relationship between a spine object and a spine attribute.", + "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 relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "objects", + "attributeDescription": "Objects where this attribute may occur.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributes", + "attributeDescription": "Typical attributes for this object.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ActionTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "207e2594-e3e4-4be8-a12c-4c401656e241", + "name": "ActionTarget", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Associates a To Do with one or more elements to work on.", + "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": "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": "The status of the work on this element.", + "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/time that work started on this element.", + "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/time that work stopped on this element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionTargetName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 to identify the action target to the actor that processes it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionMessage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Message to provide additional information on the results of acting on the target by the actor or the reasons for any failures.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "name": "ToDo", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "identifiedToDoActions", + "attributeDescription": "Actions that have been identified for this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "elementsToWorkOn", + "attributeDescription": "Elements that will be updated or used to complete the action.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceResponse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8845990e-7fd9-4b79-a19d-6c4730dadd6b", + "name": "GovernanceResponse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a governance policy to a governance driver that it is supporting.", + "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": "rationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Describes the reasoning for defining the policy in support of the driver.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "drivers", + "attributeDescription": "Drivers that justify this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "policies", + "attributeDescription": "Governance policies that support this governance driver.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionComponentPort": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5652d03a-f6c9-411a-a3e4-f490d3856b64", + "name": "SolutionComponentPort", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a solution component and its ports.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "solutionComponent", + "attributeDescription": "Owning solution component that this port belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "solutionPorts", + "attributeDescription": "List ports for this solution component.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ValidValuesMapping": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "203ce62c-3cbf-4542-bf82-81820cba718f", + "name": "ValidValuesMapping", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two valid values from different valid value sets that have equivalent meanings.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "associationDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 describing how they are related.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes on the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 between 0 and 100 indicating the confidence that the match is correct.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "matchingValue", + "attributeDescription": "A valid value from a different valid value set that is equivalent.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "matchingValue", + "attributeDescription": "A valid value from a different valid value set that is equivalent.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceDefinitionScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3845b5cc-8c85-462f-b7e6-47472a568793", + "name": "GovernanceDefinitionScope", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a scope - such as a digital service, infrastructure element or organization - and a governance definition.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "definitionAppliesTo", + "attributeDescription": "Elements defining the scope that the governance definition applies to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedGovernanceDefinitions", + "attributeDescription": "Governance definitions for this scope.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataProfileLogFile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "75026fac-f9e5-4da8-9ad1-e9c68d47f577", + "name": "DataProfileLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to the log file containing the data profile information.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "368e6fb3-7323-4f81-a723-5182491594bd", + "name": "DataProfileLogAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProfileAnnotations", + "attributeDescription": "The annotations that refer to this log file.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ff4c8484-9127-464a-97fc-99579d5bc429", + "name": "LogFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProfileLogFiles", + "attributeDescription": "Location of the data profile information.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ImpactedResource": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0908e153-e0fd-499c-8a30-5ea8b81395cd", + "name": "ImpactedResource", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an impacted referenceable and an incident report.", + "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": "severityLevelIdentifier", + "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 severe is the impact on the resource?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "impactedResources", + "attributeDescription": "Resources impacted by the incident.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "incidentReports", + "attributeDescription": "Descriptions of incidents affection this resource and the action taken.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssetDiscoveryReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7eded424-f176-4258-9ae6-138a46b2845f", + "name": "AssetDiscoveryReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An analysis report from a discovery service.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "discoveryReportTarget", + "attributeDescription": "The asset that is analyzed in the report.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assetDiscoveryAnalysisReports", + "attributeDescription": "The reports produced about this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedLike": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e2509715-a606-415d-a995-61d00503dad4", + "name": "AttachedLike", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a like to an item.", + "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": "isPublic", + "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 the attached like visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "likeAnchor", + "attributeDescription": "Element that is liked.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "deaa5ca0-47a0-483d-b943-d91c76744e01", + "name": "Like", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "likes", + "attributeDescription": "Accumulated likes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NoteLogAuthorship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8f798c0c-6769-4a2d-b489-12714d89e0a4", + "name": "NoteLogAuthorship", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a note log to an author.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "authors", + "attributeDescription": "Person contributing to the note log.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "authoredNoteLogs", + "attributeDescription": "Note log containing contributions.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SupplementaryProperties": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd", + "name": "SupplementaryProperties", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Provides additional descriptive properties to augment technical metadata extracted from a third party technology.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplementsElement", + "attributeDescription": "Describes this technical element.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplementaryProperties", + "attributeDescription": "Provides more information about this element.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "PermittedProcessing": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b472a2ec-f419-4d3f-86fb-e9d97365f961", + "name": "PermittedProcessing", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship relates data processing descriptions with purposes (outcomes).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "name": "DataProcessingPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedPurposes", + "attributeDescription": "The supported outcomes from the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "permittedProcessing", + "attributeDescription": "The description of the processing that is permitted for the purposes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalSubscriber": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4", + "name": "DigitalSubscriber", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The link between a digital subscriber and the subscription details.", + "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": "subscriberId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 subscriber.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalSubscribers", + "attributeDescription": "The digital subscribers registered under a subscription.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", + "name": "DigitalSubscription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalSubscriptions", + "attributeDescription": "The digital subscriptions in use by the subscriber.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CatalogTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bc5a5eb1-881b-4055-aa2c-78f314282ac2", + "name": "CatalogTarget", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies an element that an integration connector is to work with.", + "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": "catalogTargetName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Symbolic name of the catalog target to help the integration connector to choose when to use it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db", + "name": "IntegrationConnector", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "cataloguedByConnectors", + "attributeDescription": "An integration connector managing metadata synchronization.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "catalogTargets", + "attributeDescription": "An open metadata element that the integration connector is working on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + } + }, + "classifications": { + "SecurityGroupMembership": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "21a16f1e-9231-4983-b371-a0686d555273", + "name": "SecurityGroupMembership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the set of user groups that this user identity is a member of.", + "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": "groups", + "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 user group names.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", + "name": "UserIdentity", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "RequestResponseInterface": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "14a29330-e830-4343-a41e-d57e2cec82f8", + "name": "RequestResponseInterface", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an API that supports a request response interaction style.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceDomainSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e66bb681-99a1-4712-a2c9-712c8b0f83ae", + "name": "GovernanceDomainSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the definitions for the different governance domains in use by the organization.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SpineAttribute": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ccb749ba-34ec-4f71-8755-4d8b383c34c3", + "name": "SpineAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes an attribute of a spine object.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LineageLog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "876e55db-27b9-4132-ad00-bbf882ea8e8a", + "name": "LineageLog", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of related lineage log records.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of lineage log events.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this lineage log.", + "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": "Source of the lineage log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "KnownDuplicate": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e55062b2-907f-44bd-9831-255642285731", + "name": "KnownDuplicate", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines that duplicate resolution processing is required.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyEnforcementPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9a68b20b-3f84-4d7d-bc9e-790c4b27e685", + "name": "PolicyEnforcementPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where the result of a policy decision are enforced.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy enforcement point.", + "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 policy enforcement point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy enforcement point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy enforcement point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "TypeEmbeddedAttribute": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e2bb76bb-774a-43ff-9045-3a05f663d5d9", + "name": "TypeEmbeddedAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Type information embedded within an attribute.", + "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": "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": "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 name for the schema type.", + "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 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": "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 type (primitive and enum types).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "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": "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": "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 schema type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "schemaTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 schema type.", + "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": "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 type (literal schema type).", + "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": "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 schema type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "BusinessSignificant": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "085febdd-f129-4f4b-99aa-01f3e6294e9f", + "name": "BusinessSignificant", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A referenceable item that is meaningful to business users.", + "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": "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 item in business terms.", + "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 where this item is meaningful.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "businessCapabilityGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 business capability that this relevant to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LineageLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9992758d-d7dd-432d-b84e-62fe007a6364", + "name": "LineageLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing operational lineage events.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Criticality": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d46d211a-bd22-40d5-b642-87b4954a167e", + "name": "Criticality", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines how critical the related data items are to the organization.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "22bcbf49-83e1-4432-b008-e09a8f842a1e", + "name": "CriticalityLevel", + "description": "Defines how important a data item is to the organization.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Marginal", + "description": "The data is of minor importance to the organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Important", + "description": "The data is important to the running of the organization." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Critical", + "description": "The data is critical to the operation of the organization." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Catastrophic", + "description": "The data is so important that its loss is catastrophic putting the future of the organization in doubt." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another criticality level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "levelIdentifier", + "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the criticality level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "Defined criticality level for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataStoreEncoding": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f08e48b5-6b66-40f5-8ff6-c2bfe527330b", + "name": "DataStoreEncoding", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Description for how data is organized and represented in a data store.", + "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": "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 type.", + "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": "Language used in the encoding.", + "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 the encoding.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "properties", + "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 encoding.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47", + "name": "DataStore", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MeteringLog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "161b37c9-1d51-433b-94ce-5a760a198236", + "name": "MeteringLog", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of related metering log records.", + "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": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this metering log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of metering log records in this collection.", + "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": "Source of the metering log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "UserProfileManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "53ef4062-9e0a-4892-9824-8d51d4ad59d3", + "name": "UserProfileManager", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A system that sores descriptions of individuals and their roles/interests in an organization.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AssetOrigin": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e530c566-03d2-470a-be69-6f52bfbd5fb7", + "name": "AssetOrigin", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the origin of an asset.", + "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": "businessCapabilityPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the businessCapability property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 (GUID) of the organization where this asset originated from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organizationPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the organization property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "otherOriginValues", + "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": "Descriptive labels describing origin of the asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "businessCapability", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 (GUID) of the business capability where this asset originated from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ContextDefinition": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "54f9f41a-3871-4650-825d-59a41de01330", + "name": "ContextDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes a context where processing or decisions occur.", + "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 for how the context is 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": "Scope of influence of the context.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "StewardshipServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "eaaeaa31-6f8b-4ed5-88fe-422ed3733158", + "name": "StewardshipServer", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server dedicated to managing stewardship activity relating to governance 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "FileManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "eadec807-02f0-4d6f-911c-261eddd0c2f5", + "name": "FileManager", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a software server capability as a manager of a collection of files and folders.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceExpectations": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "fcda7261-865d-464d-b279-7d9880aaab39", + "name": "GovernanceExpectations", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A set of expectation values on the performance and use of the connected resource.", + "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": "counts", + "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": "A set of metric name to count value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "values", + "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": "A set of metric name to string value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "flags", + "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": "A set of metric name to boolean value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LogAnalysis": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "38cf214c-244d-435c-a328-251026356e6b", + "name": "LogAnalysis", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A set of results from the analysis of a log record - or collection of log records.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on the processing of the log records.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that produced this analysis.", + "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": "Source of the analysis process.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "counts", + "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": "A set of metric name to count value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "values", + "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": "A set of metric name to string value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "flags", + "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": "A set of metric name to boolean value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SpineObject": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a41ee152-de1e-4533-8535-2f8b37897cac", + "name": "SpineObject", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes a type of spine object.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "VerificationPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "12d78c95-3879-466d-883f-b71f6477a741", + "name": "VerificationPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A governance rule that tests if a required condition is true or raises an exception if not.", + "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", + "name": "int", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of the enforcement point definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MobileAsset": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "b25fb90d-8fa2-4aa9-b884-ff0a6351a697", + "name": "MobileAsset", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An asset not restricted to a single physical location.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceMeasurements": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9d99d962-0214-49ba-83f7-c9b1f9f5bed4", + "name": "GovernanceMeasurements", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A set of measurements on the performance and use of the connected resource.", + "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": "measurementCounts", + "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": "A set of metric name to current count value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "measurementValues", + "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": "A set of metric name to current value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "measurementFlags", + "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": "A set of metric name to current boolean value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DigitalProduct": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4aaaa7ca-6b4b-4c4b-997f-d5dfd42917b0", + "name": "DigitalProduct", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an element that represents a digital product.", + "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": [ + "DRAFT", + "PREPARED", + "PROPOSED", + "APPROVED", + "REJECTED", + "APPROVED_CONCEPT", + "UNDER_DEVELOPMENT", + "DEVELOPMENT_COMPLETE", + "APPROVED_FOR_DEPLOYMENT", + "ACTIVE", + "DISABLED", + "DEPRECATED", + "OTHER", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "syncDatesByKey", + "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": "DEPRECATED_ATTRIBUTE", + "attributeDescription": "Collection of synchronization dates identified by a key (deprecated, added in error).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "maturity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of maturity for the product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "serviceLife", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Length of time that the product is expected to be in service.", + "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": "Any additional properties needed to describe the product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "withdrawDate", + "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": "What date what the product withdrawn, preventing new consumers.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "nextVersion", + "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 is the next version expected to be released.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "productName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "productType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 or category of the product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "currentVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Which is the current supported version that is recommended for consumers.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "introductionDate", + "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 that the product was made available.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ReportingEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e07eefaa-16e0-46cf-ad54-bed47fb15812", + "name": "ReportingEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of creating reports by combining information from multiple 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Set": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3947f08d-7412-4022-81fc-344a20dfbb26", + "name": "Set", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines that a collection is an unordered set of items.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Taxonomy": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "37116c51-e6c9-4c37-942e-35d48c8c69a0", + "name": "Taxonomy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary that includes a taxonomy.", + "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": "organizingPrinciple", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Characteristics that influence the organization of the taxonomy.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyRetrievalPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d7367412-7ba6-409f-84db-42b51e859367", + "name": "PolicyRetrievalPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where policies are retrieved.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy retrieval point.", + "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 policy retrieval point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy retrieval point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy retrieval point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConnectorTypeDirectory": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9678ef11-ed7e-404b-a041-736df7514339", + "name": "ConnectorTypeDirectory", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a collection of related connector types.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ChangeManagementLibrary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4e236548-b802-4a1d-a329-4abdeaae5323", + "name": "ChangeManagementLibrary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a managed collection of requirements, defects and proposed changes to a project.", + "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": "libraryType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 library - may be a product name or open source project name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PrimaryCategory": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3a6c4ba7-3cc5-48cd-8952-bwra92da016d", + "name": "PrimaryCategory", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a category as being the base category of a glossary term", + "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": "categoryQualifiedName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 qualified name of the primary category of a GlossaryTerm.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Webserver": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d13e1cc5-bb7e-41ec-8233-9647fbf92a19", + "name": "Webserver", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server that supports HTTP-based application such as websites and REST services.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "PublisherInterface": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4fdedcd5-b186-4bee-887a-02fa29a10750", + "name": "PublisherInterface", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an API that sends out events to other listening components.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Folder": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3c0fa687-8a63-4c8e-8bda-ede9c78be6c7", + "name": "Folder", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines that a collection should be treated like a file folder.", + "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": "orderBy", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1d412439-4272-4a7e-a940-1065f889fc56", + "name": "OrderBy", + "description": "Defines the sequencing for a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Name", + "description": "Order by name property." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Owner", + "description": "Order by owner property." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "DateAdded", + "description": "Order by date added to the metadata collection." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "DateUpdated", + "description": "Order by date that the asset was updated." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "DateCreated", + "description": "Order by date that the asset was created." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Order by another property." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Definition for how elements in the collection should be ordered.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "otherPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property to use for ordering.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Retention": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "83dbcdf2-9445-45d7-bb24-9fa661726553", + "name": "Retention", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the retention requirements for related data items.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deleteAfter", + "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 when delete can take place.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveAfter", + "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 when archiving can take place.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "basis", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "de79bf78-ecb0-4fd0-978f-ecc2cb4ff6c7", + "name": "RetentionBasis", + "description": "Defines the retention requirements associated with a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the retention requirements for this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Temporary", + "description": "This data is temporary." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "ProjectLifetime", + "description": "The data is needed for the lifetime of the referenced project." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "TeamLifetime", + "description": "The data is needed for the lifetime of the referenced team." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ContractLifetime", + "description": "The data is needed for the lifetime of the referenced contract." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "RegulatedLifetime", + "description": "The retention period for the data is defined by the referenced regulation." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "TimeBoxedLifetime", + "description": "The data is needed for the specified time." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another basis for determining the retention requirement." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "basisIdentifier", + "attributeDescription": "Deprecated attribute. Use the basisIdentifier attribute to describe the retention basis of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "basisIdentifier", + "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": "Defined retention basis for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "associatedGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Related entity used to determine the retention period.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SourceControlLibrary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "0ef3c90d-20d7-4259-8d66-9c8bb109f2ae", + "name": "SourceControlLibrary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a software source code library that provides version control.", + "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": "libraryType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 library - may be a product name or open source project name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceProject": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "37142317-4125-4046-9514-71dc5031563f", + "name": "GovernanceProject", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that a project is rolling out capability to support the governance program.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LatestChange": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "adce83ac-10f1-4279-8a35-346976e94466", + "name": "LatestChange", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the latest change to an anchor entity and its associated attachments.", + "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": "changeTarget", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a0b7d7a0-4af5-4539-9b81-cbef52d8cc5d", + "name": "LatestChangeTarget", + "description": "Defines the type of repository element that has changed.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "EntityStatus", + "description": "The status of the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "EntityProperty", + "description": "A property in the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "EntityClassification", + "description": "A classification attached to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "EntityRelationship", + "description": "A relationship linking the anchor entity to an attachment has changed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Attachment", + "description": "An entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "AttachmentStatus", + "description": "The status of an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "AttachmentProperty", + "description": "A property in an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 7, + "value": "AttachmentClassification", + "description": "A classification attached to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 8, + "value": "AttachmentRelationship", + "description": "A relationship linking to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of change." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The relationship of element that has been changed to the anchor.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "changeAction", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "032d844b-868f-4c4a-bc5d-81f0f9704c4d", + "name": "LatestChangeAction", + "description": "Defines the type of change that was made to a repository instance.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Created", + "description": "The target element has been created." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Updated", + "description": "The properties of the target element have been changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deleted", + "description": "The target element has been deleted." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of action." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The type of change.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classificationName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "If a classification name changed, this is its name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "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": "If an attached entity or relationship to it changed, this is its unique identifier of the entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attachmentType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "If an attached entity or relationship to changed, this is its unique type name of the entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "relationshipType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "If an attached entity or relationship to changed, this is its unique type name of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "user", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 user identifier for the person/system making the change.", + "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 change. Also known as the actionDescription.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ClassWord": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "feac4bd9-37d9-4437-82f6-618ce3e2793e", + "name": "ClassWord", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes classifying or grouping noun, using in naming standards.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AuditLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "109d6d13-a3cf-4687-a0c1-c3802dc6b3a2", + "name": "AuditLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing audit log records.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ObjectIdentifier": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3d1e4389-27de-44fa-8df4-d57bfaf809ea", + "name": "ObjectIdentifier", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes an attribute that can be used to identify an instance.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConceptModel": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "7149c2de-5f24-4959-9b24-9d5e67709fac", + "name": "ConceptModel", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that a design model as a concept model.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "name": "DesignModel", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SoftwareLibrary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "5708fa1a-2b64-4706-8e14-a020e4567db3", + "name": "SoftwareLibrary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a collection of software modules. Also known as the definitive software library.", + "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": "libraryType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 library - may be a product name or open source project name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AssetManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "03170ce7-edf1-4e94-b6ab-2d5cbbf1f13c", + "name": "AssetManager", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a capability that manages metadata about assets.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "RepositoryProxy": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ae81c35e-7078-46f0-9b2c-afc99accf3ec", + "name": "RepositoryProxy", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server acting as an open metadata adapter for a metadata repository.", + "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 repository proxy.", + "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 repository proxy.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "CyberLocation": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f9ec3633-8ac8-480b-aa6d-5e674b9e1b17", + "name": "CyberLocation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A digital location.", + "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": "address", + "attributeType": { + "class": "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": "Address of the location (Deprecated).", + "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": "Base network address used to connect to the location's endpoint(s).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataMovementEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d2ed6621-9d99-4fe8-843a-b28d816cf888", + "name": "DataMovementEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of copying data from one data store to another.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudTenant": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "1b8f8522-e606-4f65-86d3-84891706ad12", + "name": "CloudTenant", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A software server supporting cloud services.", + "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": "tenantType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of tenant.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "tenantName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 tenant.", + "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": "tenantType", + "attributeDescription": "Deprecated attribute. Use the tenantType attribute to describe the type of cloud tenant.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", + "name": "SoftwareServer", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudService": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "337e7b1a-ad4b-4818-aa3e-0ff3307b2fbe", + "name": "CloudService", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A service running on a cloud platform.", + "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": "serviceType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of the service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "offeringName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Commercial name of the service.", + "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": "serviceType", + "attributeDescription": "Deprecated attribute. Use the serviceType attribute to describe the type of cloud service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ControlPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "acf8b73e-3545-435d-ba16-fbfae060dd28", + "name": "ControlPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A task in a process where a person must make a decision on the right action to take.", + "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", + "name": "int", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of the enforcement point definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ListenerInterface": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4099d2ed-2a5e-4c44-8443-9de4e378a4ba", + "name": "ListenerInterface", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an API that listens for incoming events and processes them.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SecurityTags": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a0b07a86-9fd3-40ca-bb9b-fe83c6981deb", + "name": "SecurityTags", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines labels and properties used by a security engine.", + "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": "accessGroups", + "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": "Map of access groups.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "securityProperties", + "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": "Properties that apply to the referenceable.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "securityLabels", + "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": "Labels that apply to the referenceable.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ReferenceData": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "55e5ae33-39c6-4834-9d05-ef0ae4e0163b", + "name": "ReferenceData", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An asset that contains trusted values for use as a reference.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CalculatedValue": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4814bec8-482d-463d-8376-160b0358e139", + "name": "CalculatedValue", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A field within a schema that is calculated via the formula and query targets rather than stored.", + "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": "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": "Expression to create the value.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ApplicationServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "19196efb-2706-47bf-8e51-e8ba5b36d033", + "name": "ApplicationServer", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server that hosts applications.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "PolicyAdministrationPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4f13baa3-31b3-4a85-985e-2abc784900b8", + "name": "PolicyAdministrationPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where policies are maintained.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy administration point.", + "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 policy administration point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy administration point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy administration point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Task": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "2312b668-3670-4845-a140-ef88d5a6db0c", + "name": "Task", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A self-contained, short activity, typically for one or two people.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataValue": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ab253e31-3d8a-45a7-8592-24329a189b9e", + "name": "DataValue", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that this glossary term describes a data value.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CanonicalVocabulary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "33ad3da2-0910-47be-83f1-daee018a4c05", + "name": "CanonicalVocabulary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary that contains unique 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": "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 influence for this canonical glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AuditLog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "449be034-6cc8-4f1b-859f-a8b9ff8ee7a1", + "name": "AuditLog", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of related audit log records.", + "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": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this audit log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of audit log records in the collection.", + "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": "Source of the audit log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Template": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "25fad4a2-c2d6-440d-a5b1-e537881f84ee", + "name": "Template", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Marks the referenceable as a template for creating new objects.", + "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": "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": "Unique name of the template.", + "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 template and how/where it is used.", + "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 information that is useful to the consumer of the template.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "EnforcementPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f4ce104e-7430-4c30-863d-60f6af6394d9", + "name": "EnforcementPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A governance rule that ensures a required condition is true.", + "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", + "name": "int", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of the enforcement point definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ContentCollectionManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "dbde6a5b-fc89-4b04-969a-9dc09a60ebd7", + "name": "ContentCollectionManager", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a software server capability as a manager of controlled documents and related media.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Confidence": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "25d8f8d5-2998-4983-b9ef-265f58732965", + "name": "Confidence", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the level of confidence that should be placed in the accuracy of related data items.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ae846797-d88a-4421-ad9a-318bf7c1fe6f", + "name": "ConfidenceLevel", + "description": "Defines the level of confidence to place in the accuracy of a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "AdHoc", + "description": "The data comes from an ad hoc process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Transactional", + "description": "The data comes from a transactional system so it may have a narrow scope." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Authoritative", + "description": "The data comes from an authoritative source." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Derived", + "description": "The data is derived from other data through an analytical process." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data comes from an obsolete source and must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidence level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "levelIdentifier", + "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the confidence level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "Defined confidence level for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudProvider": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a2bfdd08-d0a8-49db-bc97-7f2406281046", + "name": "CloudProvider", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A host supporting cloud services.", + "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": "providerName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 cloud provider.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "FileSystem": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "cab5ba1d-cfd3-4fca-857d-c07711fc4157", + "name": "FileSystem", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A capability that supports a store of files organized into a hierarchy of file folders.", + "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": "format", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 file system.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "encryption", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of encryption used on the filesystem (if any).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "IncidentClassifierSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "361158c0-ade1-4c92-a6a7-64f7ac39b87d", + "name": "IncidentClassifierSet", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of incident classifiers.", + "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": "incidentClassifierCategory", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 category of classifiers used to set the incidentClassifiers in IncidentReport.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DatabaseServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "6bb58cc9-ed9e-4f75-b2f2-6d308554eb52", + "name": "DatabaseServer", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Identifies a server as one that manages one or more databases.", + "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": "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": "Source of the database software.", + "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 database server.", + "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": "softwareVersion", + "attributeDescription": "Deprecated attribute. Use the softwareVersion attribute to define the version number of database server software.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "softwareVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 database server software.", + "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 database server.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "Impact": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3a6c4ba7-3cc5-48cd-8952-a50a92da016d", + "name": "Impact", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the severity of a situation on the attach entity.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "5b905856-90ec-4944-80c4-0d42bcad484a", + "name": "ImpactSeverity", + "description": "Defines the severity of the impact that a situation has.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Low", + "description": "The impact is low." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Medium", + "description": "The impact is medium." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "High", + "description": "The impact is high." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another impact level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "severityIdentifier", + "attributeDescription": "Deprecated attribute. Use the severityIdentifier attribute to describe the severity level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "severityIdentifier", + "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": "Defined level of severity for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "severityIdentifier", + "attributeDescription": "Deprecated attribute. Use the severityIdentifier attribute to describe the severity level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "NotificationManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3e7502a7-396a-4737-a106-378c9c94c105", + "name": "NotificationManager", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a server capability that is distributing events from a topic to its subscriber list.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ServerPurpose": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Adds more detail about the purpose of a deployed instance of IT infrastructure.", + "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": "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": [ + "StewardshipServer", + "Webserver", + "RepositoryProxy", + "ApplicationServer", + "DatabaseServer", + "MetadataServer", + "GovernanceDaemon", + "IntegrationServer" + ] + }, + "ExceptionLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4756a6da-e0c2-4e81-b9ab-99df2f735eec", + "name": "ExceptionLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing exceptions.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "WorkflowEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "37a6d212-7c4a-4a82-b4e2-601d4358381c", + "name": "WorkflowEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of running a mixture of human and automated tasks as part of a workflow process.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MetadataServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "74a256ad-4022-4518-a446-c65fe082d4d3", + "name": "MetadataServer", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server hosting a metadata collection.", + "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": "format", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 supported metadata.", + "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 metadata server.", + "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 server.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "SoftwarePackageManifest": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e328ae6e-0b16-4490-9883-c953b4258841", + "name": "SoftwarePackageManifest", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a collection of software packages.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GlossaryProject": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "43be51a9-2d19-4044-b399-3ba36af10929", + "name": "GlossaryProject", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a project that is defining new glossary terms and categories or maintaining an existing glossary.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Campaign": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "41437629-8609-49ef-8930-8c435c912572", + "name": "Campaign", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A long-term strategic initiative that is implemented through multiple related projects.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConceptBeadAttributeCoverage": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f8b60afe-ddef-4b6f-9628-82ebfff34d65", + "name": "ConceptBeadAttributeCoverage", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the coverage category of a concept bead attribute.", + "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": "coverageCategory", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2c0ac237-e02e-431a-89fd-3107d94d4007", + "name": "ConceptModelAttributeCoverageCategory", + "description": "Describes the type of attribute - this is used in scoping the model.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "UniqueIdentifier", + "description": "The attribute uniquely identifies the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Identifier", + "description": "The attribute is a good indicator of the identity of the concept bead but not guaranteed to be unique." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "CoreDetail", + "description": "The attribute provides information that is typically required by all of the consumers of the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ExtendedDetail", + "description": "The attribute contains supplementary information that is of interest to specific consumers of the concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of role that the attribute plays as part of the concept bead.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea", + "name": "ConceptBeadAttribute", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MeteringLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "5ceb0c07-4271-4910-9e24-b0894f395d93", + "name": "MeteringLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing resource use events.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyDecisionPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "bf521975-bfec-4115-a8e3-ed0fee7d4a43", + "name": "PolicyDecisionPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where policies are evaluated for a specific situation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy decision point.", + "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 policy decision point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy decision point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy decision point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceDaemon": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "7815f222-529d-4902-8f0b-e37cbc779885", + "name": "GovernanceDaemon", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server dedicated to managing activity relating to governance 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "ProcessingState": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "261fb0aa-b884-4ee8-87ea-a60510e9751d", + "name": "ProcessingState", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Stores processing state information used by various SoftwareCapabilities.", + "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": "syncDatesByKey", + "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": "Collection of synchronization dates identified by a key", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AnalyticsEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "1a0dc6f6-7980-42f5-98bd-51e56543a07e", + "name": "AnalyticsEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of running analytics models using data from one or more 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ExceptionBacklog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "b3eceea3-aa02-4d84-8f11-da4953e64b5f", + "name": "ExceptionBacklog", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of exceptions that need to be resolved", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this exception backlog.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of exception backlog.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person or team responsible for this exception backlog.", + "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": "Source of the exception backlog.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataVirtualizationEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "03e25cd0-03d7-4d96-b28b-eed671824ed6", + "name": "DataVirtualizationEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of creating new data sets by dynamically combining data from one or more data stores or 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Ownership": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "8139a911-a4bd-432b-a9f4-f6d11c511abe", + "name": "Ownership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Who is responsible for making decisions on the management and governance of this element.", + "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": "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": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifier of the owner.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "ownerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element that describes the owner.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "ownerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the owner.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "IntegrationServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "c165b760-d9ab-47ac-a2ee-7854ec74605a", + "name": "IntegrationServer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Identifies a server that exchanges data between between other servers.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "ActivityDescription": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "317f0e52-1548-41e6-b90c-6ae5e6c53fed", + "name": "ActivityDescription", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that this glossary term describes an activity.", + "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": "activityType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "af7e403d-9865-4ebb-8c1a-1fd57b4f4bca", + "name": "ActivityType", + "description": "Different types of activities.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Operation", + "description": "Normal processing." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Action", + "description": "A requested or required change." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Task", + "description": "A piece of work for a person, organization or engine." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Process", + "description": "A sequence of tasks." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Project", + "description": "An organized activity to achieve a specific goal." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of activity." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Classification of the activity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PrimeWord": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3ea1ea66-8923-4662-8628-0bacef3e9c5f", + "name": "PrimeWord", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes a primary noun, used in naming standards.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "EditingGlossary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "173614ba-c582-4ecc-8fcc-cde5fb664548", + "name": "EditingGlossary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A temporary glossary holding glossary content that is being edited.", + "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": "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 updates.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AssetZoneMembership": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a1c17a86-9fd3-40ca-bb9b-fe83c6981deb", + "name": "AssetZoneMembership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the asset's membership of the governance zones.", + "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": "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": "ACTIVE_ATTRIBUTE", + "attributeDescription": "List of governance zones for the asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PrimaryKey": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "b239d832-50bd-471b-b17a-15a335fc7f40", + "name": "PrimaryKey", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A uniquely identifying relational column.", + "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": "keyPattern", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", + "name": "KeyPattern", + "description": "Defines the type of identifier used for an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "LocalKey", + "description": "Unique key allocated and used within the scope of a single system." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "RecycledKey", + "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "NaturalKey", + "description": "Key derived from an attribute of the entity, such as email address, passport number." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "MirrorKey", + "description": "Key value copied from another system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "AggregateKey", + "description": "Key formed by combining keys from multiple systems." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "CallersKey", + "description": "Key from another system can bey used if system name provided." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "StableKey", + "description": "Key value will remain active even if records are merged." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another key pattern." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of primary key.", + "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 primary key.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "name": "RelationalColumn", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AbstractConcept": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9d725a07-4abf-4939-a268-419d200b69c2", + "name": "AbstractConcept", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that this glossary term describes an abstract concept.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MetamodelInstance": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "07bd0820-6b14-43b0-a625-2c89f2beb93a", + "name": "MetamodelInstance", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the element from a metadata model that this element embodies.", + "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": "metamodelElementGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Element in the metadata model that the attached element embodies.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Memento": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ecdcd472-6701-4303-8dec-267bcb54feb9", + "name": "Memento", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An element whose real-world counterpart has been deleted or moved to offline archived.", + "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": "archiveDate", + "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": "Timestamp when the archive occurred or was detected.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveUser", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 user that performed the archive - or detected the archive.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveProcess", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 process that performed the archive - or detected the archive.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveService", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 service that created this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveMethod", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 method that created this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveProperties", + "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 to locate the real-world counterpart in the archive.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceClassificationSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d92b7f31-c92d-418d-b345-ea45bb3f73f5", + "name": "GovernanceClassificationSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the set of levels that are used within a specific governance classification.", + "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 of the governance domain that recognizes this set of levels.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classificationName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 this set of levels is used.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classificationPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property in the classification where this value is used.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SubjectArea": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "480e6993-35c5-433a-b50b-0f5c4063fb5d", + "name": "SubjectArea", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an element as part of a subject area definition.", + "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 subject area.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceMeasurementsResultsDataSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "789f2e89-accd-4489-8eca-dc43b432c022", + "name": "GovernanceMeasurementsResultsDataSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing measurements for a governance metric.", + "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 use of the data set for governance metrics.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConsolidatedDuplicate": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e40e80d7-5a29-482c-9a88-0dc7251f08de", + "name": "ConsolidatedDuplicate", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An element that has be formed by combining the properties, classifications and relationships from multiple duplicate entities.", + "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": "statusIdentifier", + "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": "Status of the consolidated entity. Value defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this consolidated entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "Source of the duplicate detection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information for the steward(s) relating to the survivorship rules and consolidation decisions.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SecureLocation": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e7b563c0-fcdd-4ba7-a046-eecf5c4638b8", + "name": "SecureLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A location that protects the assets in its care.", + "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 security at this location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of security at this location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Modifier": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f662c95a-ae3f-4f71-b442-78ab70f2ee47", + "name": "Modifier", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes modifying noun or adverb, used in naming standards.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Incomplete": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "078432fb-a889-4a51-8ebe-9797becea9f1", + "name": "Incomplete", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Accompanies a partial, incomplete Referenceable.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceStatusSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "c13261bb-0cfe-4540-a44a-cca2b14f412b", + "name": "GovernanceStatusSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the set of levels that are used to describe the status of a governance element.", + "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": "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 set of levels.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudPlatform": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "1b8f8511-e606-4f65-86d3-84891706ad12", + "name": "CloudPlatform", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A software server platform supporting cloud services.", + "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 cloud platform.", + "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 cloud platform.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "ba7c7884-32ce-4991-9c41-9778f1fec6aa", + "name": "SoftwareServerPlatform", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MasterDataManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "5bdad12e-57e7-4ff9-b7be-5d869e77d30b", + "name": "MasterDataManager", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A system that manages the consolidation and reconciliation of master data - typically people, organizations, products and accounts.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "UserAccessDirectory": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "29c98cf7-32b3-47d2-a411-48c1c9967e6d", + "name": "UserAccessDirectory", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A system that stores the access rights and groups for users (people and automated processes).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "InstanceMetadata": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e6d5c097-a5e9-4bc4-a614-2506276059af", + "name": "InstanceMetadata", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a data field that contains metadata for the row/record/object.", + "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": "typeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Open metadata type for the instance metadata (if applicable).", + "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 metadata.", + "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 describing properties, valid values or associated processing for this metadata.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "FixedLocation": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "bc111963-80c7-444f-9715-946c03142dd2", + "name": "FixedLocation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A location linked to a physical place.", + "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": "address", + "attributeType": { + "class": "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": "Postal address of the location (Deprecated).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "postalAddress", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Postal address of the location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mapProjection", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 scheme used to define the meaning of the coordinates.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "timezone", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Timezone for the location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "coordinates", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Geographical coordinates of this location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ElementSupplement": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "58520015-ce6e-47b7-a1fd-864030544819", + "name": "ElementSupplement", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that is being used to supplement asset descriptions.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyInformationPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "2058ab6f-ddbf-45f9-9136-47354544e282", + "name": "PolicyInformationPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where additional information used in a policy decision are stored.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy information point.", + "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 policy information point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy information point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy information point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Anchors": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "aa44f302-2e43-4669-a1e7-edaae414fc6e", + "name": "Anchors", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the anchor entities for an element that is part of a large composite object such as an asset.", + "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": "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": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The unique identifier of the referenceable that this element is directly or indirectly anchored to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Confidentiality": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "742ddb7d-9a4a-4eb5-8ac2-1d69953bd2b6", + "name": "Confidentiality", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the level of confidentiality of related data items.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "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": "levelIdentifier", + "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the confidentiality level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "Defined confidentiality level for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidentialityLevel", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "abc48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "ConfidentialityLevel", + "description": "Defines how confidential a data item is.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Internal", + "description": "The data should not be exposed outside of this organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Confidential", + "description": "The data should be protected and only shared with people with a need to see it." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Sensitive", + "description": "The data is sensitive and inappropriate use may adversely impact the data subject." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Restricted", + "description": "The data is very valuable and must be restricted to a very small number of people." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidentially level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Pre-defined level for this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + } + }, + "enums": { + "MembershipStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a3bdb2ac-c28e-4e5a-8ab7-76aa01038832", + "name": "MembershipStatus", + "description": "Defines the provenance and confidence that a member belongs in a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Discovered", + "description": "The membership was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Assigned", + "description": "The membership was proposed by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Imported", + "description": "The membership was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Validated", + "description": "The membership created by an automated process has been validated and approved by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Deprecated", + "description": "The membership should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "Obsolete", + "description": "The membership must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another membership status." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + } + }, + "BusinessCapabilityType": { + "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." + } + }, + "ToDoStatus": { + "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." + } + ] + }, + "DiscoveryServiceRequestStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b2fdeddd-24eb-4e9c-a2a4-2693828d4a69", + "name": "DiscoveryServiceRequestStatus", + "description": "Defines the progress or completion of a requested discovery service.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Activating", + "description": "Discovery service is being initialized in the discovery engine." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "InProgress", + "description": "Discovery service is executing." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Failed", + "description": "Discovery service has failed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Completed", + "description": "Discovery service has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Other", + "description": "Discovery service has a status that is not covered by this enum." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery service status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + } + }, + "GovernanceDomain": { + "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." + } + ] + }, + "DataClassAssignmentStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2611892f-0527-478f-8843-a3aa2b9abb47", + "name": "DataClassAssignmentStatus", + "description": "Defines the provenance and confidence of a data class assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The data class assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The data class assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The data class assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The data class assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The data class assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data class assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another data class assignment status." + } + ] + }, + "DiscoveryRequestStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ecb48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "DiscoveryRequestStatus", + "description": "Defines the progress or completion of a discovery request.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "InProgress", + "description": "Discovery request is executing." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Failed", + "description": "Discovery request has failed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Completed", + "description": "Discovery request has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery request status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + } + }, + "StarRating": { + "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." + } + ] + }, + "ImpactSeverity": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "5b905856-90ec-4944-80c4-0d42bcad484a", + "name": "ImpactSeverity", + "description": "Defines the severity of the impact that a situation has.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Low", + "description": "The impact is low." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Medium", + "description": "The impact is medium." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "High", + "description": "The impact is high." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another impact level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + } + }, + "Endianness": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "e5612c3a-49bd-4148-8f67-cfdf145d5fd8", + "name": "Endianness", + "description": "Defines the sequential order in which bytes are arranged into larger numerical values when stored in memory or when transmitted over digital links.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BigEndian", + "description": "Bits or bytes order from the big end." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "LittleEndian", + "description": "Bits or bytes ordered from the little end." + } + ] + }, + "AnnotationStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", + "name": "AnnotationStatus", + "description": "Defines the status of an annotation.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "New", + "description": "The annotation is new." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewed", + "description": "The annotation has been reviewed by a steward." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Approved", + "description": "The annotation has been approved." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Actioned", + "description": "The request has been actioned." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Invalid", + "description": "The annotation is invalid or incorrect." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Ignore", + "description": "The annotation should be ignored." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another status." + } + ] + }, + "ServerAssetUseType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "09439481-9489-467c-9ae5-178a6e0b6b5a", + "name": "ServerAssetUseType", + "description": "Defines how a software server capability may use an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Governs", + "description": "The software server capability provides management or oversight of the asset." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Maintains", + "description": "The software server capability keeps the asset up-to-date." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Uses", + "description": "The software server capability consumes the content of the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + } + }, + "ConfidenceLevel": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ae846797-d88a-4421-ad9a-318bf7c1fe6f", + "name": "ConfidenceLevel", + "description": "Defines the level of confidence to place in the accuracy of a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "AdHoc", + "description": "The data comes from an ad hoc process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Transactional", + "description": "The data comes from a transactional system so it may have a narrow scope." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Authoritative", + "description": "The data comes from an authoritative source." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Derived", + "description": "The data is derived from other data through an analytical process." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data comes from an obsolete source and must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidence level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + } + }, + "DuplicateType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2f6a3dc1-aa98-4b92-add4-68de53b7369c", + "name": "DuplicateType", + "description": "Defines if the duplicates are peers or one is a consolidated duplicate.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Peer", + "description": "The duplicates are peers." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Consolidated", + "description": "One duplicate has been constructed from the other (ands its peers)." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another duplicate type." + } + ] + }, + "OwnerType": { + "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." + } + ] + }, + "KeyPattern": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", + "name": "KeyPattern", + "description": "Defines the type of identifier used for an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "LocalKey", + "description": "Unique key allocated and used within the scope of a single system." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "RecycledKey", + "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "NaturalKey", + "description": "Key derived from an attribute of the entity, such as email address, passport number." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "MirrorKey", + "description": "Key value copied from another system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "AggregateKey", + "description": "Key formed by combining keys from multiple systems." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "CallersKey", + "description": "Key from another system can bey used if system name provided." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "StableKey", + "description": "Key value will remain active even if records are merged." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another key pattern." + } + ] + }, + "CommentType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "06d5032e-192a-4f77-ade1-a4b97926e867", + "name": "CommentType", + "description": "Descriptor for a comment that indicated its intent.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "GeneralComment", + "description": "General comment." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Question", + "description": "A question." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Answer", + "description": "An answer to a previously asked question." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Suggestion", + "description": "A suggestion for improvement." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Experience", + "description": "An account of an experience." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "None of the above." + } + ] + }, + "SolutionPortDirection": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "4879c96e-26c7-48af-ba92-8277632be733", + "name": "SolutionPortDirection", + "description": "Defines the direction of flow of information through a solution port.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The direction of flow is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Output", + "description": "The process is producing information through this port." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Input", + "description": "The process is consuming information through this port." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "InOut", + "description": "The process has a call interface attached to this port." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "OutIn", + "description": "The process is issuing a call to an external API through this port." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another direction." + } + ] + }, + "MediaType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "9548390c-69f5-4dc6-950d-6fdffb257b56", + "name": "MediaType", + "description": "Defines the type of media.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Image", + "description": "The media is an image." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Audio", + "description": "The media is an audio recording." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Document", + "description": "The media is a text document, probably rich text." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Video", + "description": "The media is a video recording." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of media, probably not supported." + } + ] + }, + "MediaUsage": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c6861a72-7485-48c9-8040-876f6c342b61", + "name": "MediaUsage", + "description": "Defines how a related media reference should be used.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Icon", + "description": "Provides a small image to represent the asset in tree views and graphs." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Thumbnail", + "description": "Provides a small image about the asset that can be used in lists." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Illustration", + "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "UsageGuidance", + "description": "Provides guidance to a person on how to use the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ] + }, + "RetentionBasis": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "de79bf78-ecb0-4fd0-978f-ecc2cb4ff6c7", + "name": "RetentionBasis", + "description": "Defines the retention requirements associated with a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the retention requirements for this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Temporary", + "description": "This data is temporary." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "ProjectLifetime", + "description": "The data is needed for the lifetime of the referenced project." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "TeamLifetime", + "description": "The data is needed for the lifetime of the referenced team." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ContractLifetime", + "description": "The data is needed for the lifetime of the referenced contract." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "RegulatedLifetime", + "description": "The retention period for the data is defined by the referenced regulation." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "TimeBoxedLifetime", + "description": "The data is needed for the specified time." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another basis for determining the retention requirement." + } + ] + }, + "DataItemSortOrder": { + "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." + } + ] + }, + "GovernanceClassificationStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "ProcessContainmentType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1bb4b908-7983-4802-a2b5-91b095552ee9", + "name": "ProcessContainmentType", + "description": "The containment relationship between two processes.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "OWNED", + "description": "The parent process owns the child process in the relationship, such that if the parent is removed the child should also be removed. A child can have at most one such parent." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "USED", + "description": "The child process is simply used by the parent. A child process can have many such relationships to parents." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "OTHER", + "description": "None of the above." + } + ] + }, + "PermittedSynchronization": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", + "name": "PermittedSynchronization", + "description": "Defines the synchronization rules between a third party technology and open metadata.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BothDirections", + "description": "Metadata exchange is permitted in both directions." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "ToThirdParty", + "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "FromThirdParty", + "description": "The third party technology is logically upstream and is publishing metadata to open metadata." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another synchronization rule." + } + ] + }, + "OrderBy": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1d412439-4272-4a7e-a940-1065f889fc56", + "name": "OrderBy", + "description": "Defines the sequencing for a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Name", + "description": "Order by name property." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Owner", + "description": "Order by owner property." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "DateAdded", + "description": "Order by date added to the metadata collection." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "DateUpdated", + "description": "Order by date that the asset was updated." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "DateCreated", + "description": "Order by date that the asset was created." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Order by another property." + } + ] + }, + "LatestChangeTarget": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a0b7d7a0-4af5-4539-9b81-cbef52d8cc5d", + "name": "LatestChangeTarget", + "description": "Defines the type of repository element that has changed.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "EntityStatus", + "description": "The status of the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "EntityProperty", + "description": "A property in the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "EntityClassification", + "description": "A classification attached to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "EntityRelationship", + "description": "A relationship linking the anchor entity to an attachment has changed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Attachment", + "description": "An entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "AttachmentStatus", + "description": "The status of an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "AttachmentProperty", + "description": "A property in an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 7, + "value": "AttachmentClassification", + "description": "A classification attached to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 8, + "value": "AttachmentRelationship", + "description": "A relationship linking to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of change." + } + ] + }, + "CommunityMembershipType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b0ef45bf-d12b-4b6f-add6-59c14648d750", + "name": "CommunityMembershipType", + "description": "Type of membership to a community.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Contributor", + "description": "Participant in the community." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Administrator", + "description": "Administrator of the community." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Leader", + "description": "Leader of the community." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Observer", + "description": "Observer of the community." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role in the community." + } + ] + }, + "AssetOwnerType": { + "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." + } + ] + }, + "TermRelationshipStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "ActivityType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "af7e403d-9865-4ebb-8c1a-1fd57b4f4bca", + "name": "ActivityType", + "description": "Different types of activities.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Operation", + "description": "Normal processing." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Action", + "description": "A requested or required change." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Task", + "description": "A piece of work for a person, organization or engine." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Process", + "description": "A sequence of tasks." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Project", + "description": "An organized activity to achieve a specific goal." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of activity." + } + ] + }, + "ConfidentialityLevel": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "abc48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "ConfidentialityLevel", + "description": "Defines how confidential a data item is.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Internal", + "description": "The data should not be exposed outside of this organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Confidential", + "description": "The data should be protected and only shared with people with a need to see it." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Sensitive", + "description": "The data is sensitive and inappropriate use may adversely impact the data subject." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Restricted", + "description": "The data is very valuable and must be restricted to a very small number of people." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidentially level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + } + }, + "TermAssignmentStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c8fe36ac-369f-4799-af75-46b9c1343ab3", + "name": "TermAssignmentStatus", + "description": "Defines the provenance and confidence of a term assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The term assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The term assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The term assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The term assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The term assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The term assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term assignment status." + } + ] + }, + "OperationalStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", + "name": "OperationalStatus", + "description": "Defines whether a component is operational.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Disabled", + "description": "The component is not operational." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Enabled", + "description": "The component is operational." + } + ] + }, + "ConceptModelDecoration": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a97d9167-7dd6-4dea-a8cf-c73c57a0f470", + "name": "ConceptModelDecoration", + "description": "Describes the type of relationship end.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Aggregation", + "description": "The relationship links an independent concept bead to a collection concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Composition", + "description": "The relationship links a sub-part to a composite." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Extension", + "description": "The relationship links an extension to a base concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + } + }, + "CrowdSourcingRole": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "0ded50c2-17cc-4ecf-915e-908e66dbb27f", + "name": "CrowdSourcingRole", + "description": "Type of contributor to new information and/or assets.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Proposer", + "description": "Actor that creates the initial version." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewer", + "description": "Actor that provided feedback." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Supporter", + "description": "Actor that agrees with the definition." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Approver", + "description": "Actor that declares the definition should be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role." + } + ] + }, + "ConceptModelAttributeCoverageCategory": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2c0ac237-e02e-431a-89fd-3107d94d4007", + "name": "ConceptModelAttributeCoverageCategory", + "description": "Describes the type of attribute - this is used in scoping the model.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "UniqueIdentifier", + "description": "The attribute uniquely identifies the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Identifier", + "description": "The attribute is a good indicator of the identity of the concept bead but not guaranteed to be unique." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "CoreDetail", + "description": "The attribute provides information that is typically required by all of the consumers of the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ExtendedDetail", + "description": "The attribute contains supplementary information that is of interest to specific consumers of the concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + } + }, + "GovernanceActionStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", + "name": "GovernanceActionStatus", + "description": "Defines the current execution status of a governance action.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Requested", + "description": "The governance action has been created and is pending." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Approved", + "description": "The governance action is approved to run." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Waiting", + "description": "The governance action is waiting for its start time or the right conditions to run." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Activating", + "description": "The governance service for the governance action is being initialized in the governance engine." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "InProgress", + "description": "The governance engine is running the associated governance service for the governance action." + }, + { + "headerVersion": 1, + "ordinal": 10, + "value": "Actioned", + "description": "The governance service for the governance action has successfully completed processing." + }, + { + "headerVersion": 1, + "ordinal": 11, + "value": "Invalid", + "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." + }, + { + "headerVersion": 1, + "ordinal": 12, + "value": "Ignored", + "description": "The governance action has not been run because a different governance action was chosen." + }, + { + "headerVersion": 1, + "ordinal": 13, + "value": "Failed", + "description": "The governance service for the governance action failed to execute." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Undefined or unknown governance action status." + } + ] + }, + "ContactMethodType": { + "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." + } + ] + }, + "CriticalityLevel": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "22bcbf49-83e1-4432-b008-e09a8f842a1e", + "name": "CriticalityLevel", + "description": "Defines how important a data item is to the organization.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Marginal", + "description": "The data is of minor importance to the organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Important", + "description": "The data is important to the running of the organization." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Critical", + "description": "The data is critical to the operation of the organization." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Catastrophic", + "description": "The data is so important that its loss is catastrophic putting the future of the organization in doubt." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another criticality level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + } + }, + "LatestChangeAction": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "032d844b-868f-4c4a-bc5d-81f0f9704c4d", + "name": "LatestChangeAction", + "description": "Defines the type of change that was made to a repository instance.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Created", + "description": "The target element has been created." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Updated", + "description": "The properties of the target element have been changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deleted", + "description": "The target element has been deleted." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of action." + } + ] + }, + "IncidentReportStatus": { + "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." + } + ] + }, + "PortType": { + "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." + } + ] + } + }, + "entityTypeGUIDToName": { + "6403a704-aad6-41c2-8e08-b9525c006f85": "PropertyFacet", + "251e443c-dee0-47fa-8a73-1a9d511915a0": "DivergentDuplicateAnnotation", + "27891e52-1255-4a33-98a2-377717a25334": "MetadataRepositoryService", + "b2605d2d-10cd-443c-b3e8-abf15fb051f0": "SetSchemaType", + "0b494819-28be-4604-b238-3af20963eea6": "SemanticAnnotation", + "fbe95779-1f3c-4ac6-aa9d-24963ff16282": "UserIdentity", + "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3": "NoteEntry", + "2df2069f-6475-400c-bf8c-6d2072a55d47": "SecurityService", + "759da11b-ebb6-4382-bdc9-72adc7c922db": "IntegrationConnector", + "a32316b8-dc8c-48c5-b12b-71c1b2a080bf": "Referenceable", + "a2a5cb74-f8e0-470f-be71-26b7e32166a6": "DivergentAttachmentClassificationAnnotation", + "962de053-ab51-40eb-b843-85b98013f5ca": "DataFileCollection", + "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C": "Port", + "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c": "KubernetesCluster", + "fa6de61d-98cb-48c4-b21f-ab7186235fd4": "InformationSupplyChain", + "9062df4c-9f4a-4012-a67a-968d7a3f4bcf": "DataProcessingPurpose", + "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0": "ExternalId", + "b463827c-c0a0-4cfb-a2b2-ddc63746ded4": "Document", + "e0430f59-f021-411a-9d81-883e1ff3f6f6": "Network", + "17bee904-5b35-4c81-ac63-871c615424a2": "KeystoreFile", + "f703a621-4078-4c07-ab22-e7c334b94235": "SuspectDuplicateAnnotation", + "fe30a033-8f86-4d17-8986-e6166fa24177": "SoftwareServerCapability", + "0921c83f-b2db-4086-a52c-0d10e52ca078": "Database", + "a13b409f-fd67-4506-8d94-14dfafd250a4": "StructSchemaType", + "88886b53-c839-48fa-bcfa-83ebcf8abbb5": "Agreement", + "d28c3839-bc6f-41ad-a882-5667e01fea72": "SubjectAreaDefinition", + "69055d10-51dc-4c2b-b21f-d76fad3f8ef3": "GovernanceProcedure", + "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2": "DivergentAttachmentValueAnnotation", + "042d9b5c-677e-477b-811f-1c39bf716759": "SecurityGroup", + "72e6473d-4ce0-4609-80a4-e6e949a7f520": "QualityAnnotation", + "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893": "MetadataRepositoryCohort", + "49990755-2faa-4a62-a1f3-9124b9c73df4": "ImplementationSnippet", + "4d7c43ec-983b-40e4-af78-6fb66c4f5136": "IntegrationGroup", + "69836cfd-39b8-460b-8727-b04e19210069": "DataItemOwner", + "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee": "GovernanceRole", + "b46cddb3-9864-4c5d-8a49-266b3fc95cb8": "APISchemaType", + "f96b5a32-42c1-4a74-8f77-70a81cec783d": "ProjectCharter", + "0c8a3673-04ef-406f-899d-e88de67f6176": "DataClassAnnotation", + "42cfccbf-cc68-4980-8c31-0faf1ee002d3": "SimpleDocumentType", + "b5cefb7e-b198-485f-a1d7-8e661012499b": "DocumentSchemaAttribute", + "68d7b905-6438-43be-88cf-5de027b4aaaf": "InformationView", + "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5": "BusinessOwner", + "786a6199-0ce8-47bf-b006-9ace1c5510e4": "ComplexSchemaType", + "4e7761e8-3969-4627-8f40-bfe3cde85a1d": "OpenMetadataRoot", + "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9": "GovernanceActionService", + "046a049d-5f80-4e5b-b0ae-f3cf6009b513": "LicenseType", + "248975ec-8019-4b8a-9caf-084c8b724233": "TabularSchemaType", + "114e9f8f-5ff3-4c32-bd37-a7eb42712253": "Connection", + "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3": "GovernanceControl", + "af6265e7-5f58-4a9c-9ae7-8d4284be62bd": "TabularFileColumn", + "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1": "InformationSupplyChainSegment", + "740f07dc-4ee8-4c2a-baba-efb55c73eb68": "RelationshipAdviceAnnotation", + "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced": "SchemaAnalysisAnnotation", + "3437fd1d-5098-426c-9b55-c94d1fc5dc0e": "LocationOwner", + "290a192b-42a7-449a-935a-269ca62cfdac": "GovernanceZone", + "27db26a1-ff66-4042-9932-ddc728b977b9": "VerificationPointDefinition", + "685f91fb-c74b-437b-a9b6-c5e557c6d3b2": "DataProcessingDescription", + "ba167b12-969f-49d3-8bea-d04228d9a44b": "APIParameterList", + "8145967e-bb83-44b2-bc8c-68112c6a5a06": "EmbeddedProcess", + "e507485b-9b5a-44c9-8a28-6967f7ff3672": "GlossaryCategory", + "829a648d-f249-455d-8127-aeafa021f832": "RegulationArticle", + "5be4ee8f-4d0c-45cd-a411-22a468950342": "EventSchemaAttribute", + "ac406bf8-e53e-49f1-9088-2af28bcbd285": "PersonRole", + "6bc727dc-e855-4979-8736-78ac3cfcd32f": "DataClass", + "f1c0af19-2729-4fac-996e-a7badff3c21c": "APIOperation", + "896d14c2-7522-4f6c-8519-757711943fe6": "Asset", + "09b2133a-f045-42cc-bb00-ee602b74c618": "ValidValueDefinition", + "92e20083-0393-40c0-a95b-090724a91ddc": "GovernanceActionType", + "9794f42f-4c9f-4fe6-be84-261f0a7de890": "HostCluster", + "f3f69251-adb1-4042-9d95-70082f95a028": "SoftwareService", + "2f278dfc-4640-4714-b34b-303e84e4fc40": "OpenDiscoveryService", + "e3c4293d-8846-4500-b0c0-197d73aba8b0": "Regulation", + "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9": "DatabaseManager", + "e6c049e2-56aa-4512-a634-20cd7085e534": "ArchiveService", + "6046bdf8-a37e-4bc4-b51d-325d8c31a96c": "GovernanceRepresentative", + "deaa5ca0-47a0-483d-b943-d91c76744e01": "Like", + "37156790-feac-4e1a-a42e-88858ae6f8e1": "DocumentStore", + "c85bea73-d7af-46d7-8a7e-cb745910b1df": "DataSourceMeasurementAnnotation", + "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea": "DataField", + "ba846a7b-2955-40bf-952b-2793ceca090a": "InformalTag", + "be650674-790b-487a-a619-0a9002488055": "OpenDiscoveryEngine", + "5caf954a-3e33-4cbd-b17d-8b8613bd2db8": "SchemaTypeChoice", + "82efa1fa-501f-4ac7-942c-6536c4a1cd61": "DataManager", + "36db26d5-aba2-439b-bc15-d62d373c5db6": "Team", + "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1": "GraphEdge", + "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3": "CrowdSourcingContributor", + "22c4e433-1b87-4446-840a-03f83d2dc113": "ServiceLevelObjective", + "6dfba6ce-e925-4281-880d-d04100c5b991": "DigitalServiceManager", + "36f66863-9726-4b41-97ee-714fd0dc6fe4": "Glossary", + "bb094b5e-0934-4d8b-8727-48eb5d241a46": "BusinessImperative", + "ea3b15af-ed0e-44f7-91e4-bdb299dd4976": "MetadataCollection", + "bead9aa4-214a-4596-8036-aa78395bbfb1": "EventSet", + "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea": "GovernanceProcess", + "a376a993-5f1c-4926-b74e-a15a38e1d55a": "ControlPointDefinition", + "fb60761f-7afd-4d3d-9efa-24bc85a7b22e": "ConnectorCategory", + "c403c109-7b6b-48cd-8eee-df445b258b33": "GovernanceDriver", + "20c45531-5d2e-4eb6-9a47-035cb1067b82": "TableDataSet", + "f7feb509-bce6-4989-a340-5dc7e3eec313": "ConceptBead", + "4aa47799-5128-4eeb-bd72-e357b49f8bfe": "SolutionBlueprint", + "201f48c5-4e4b-41dc-9c5f-0bc9742190cf": "ReferenceCodeTable", + "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9": "MetadataRepository", + "486af62c-dcfd-4859-ab24-eab2e380ecfd": "DeployedSoftwareComponent", + "81394f85-6008-465b-926e-b3fae4668937": "ITProfile", + "bff1f694-afd0-4829-ab11-50a9fbaf2f5f": "DataProfileAnnotation", + "2b3bed05-c227-47d7-87a3-139ab0568361": "RepositoryGovernanceEngine", + "3b7d1325-ec2c-44cb-8db0-ce207beb78cf": "GovernancePrinciple", + "77133161-37a9-43f5-aaa3-fd6d7ff92fdb": "BoundedSchemaType", + "50a61105-35be-4ee3-8b99-bdd958ed0685": "Organization", + "7f53928f-9148-4710-ad37-47633f33cb08": "DataProcessingAction", + "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15": "BusinessCapability", + "16d2c34a-43db-476b-93ae-6a2996f514ec": "Actor", + "578a3500-9ad3-45fe-8ada-e4e9572c37c8": "GovernanceDefinition", + "4d3a2b8d-9e2e-4832-b338-21c74e45b238": "GovernanceActionProcess", + "d8f33bd7-afa9-4a11-a8c7-07dcec83c050": "Process", + "5d74250a-57ca-4197-9475-8911f620a94e": "GovernanceActionEngine", + "13defd95-6452-4398-8382-e47f1a271eff": "ConceptBeadLink", + "2ccb2117-9cee-47ca-8150-9b3a543adcec": "CSVFile", + "14145458-f0d0-4955-8899-b8a2874708c9": "StorageVolume", + "718d4244-8559-49ed-ad5a-10e5c305a656": "SchemaElement", + "c5ce5499-9582-42ea-936c-9771fbd475f8": "MediaFile", + "92f7fe27-cd2f-441c-a084-156821aa5bca": "MetadataIntegrationService", + "b55c2740-2d41-4433-a099-596c8e9b7bf6": "QueryDataContainer", + "d804d406-ac74-4f92-9bde-2ba0793680ea": "ConceptBeadAttribute", + "f4fffcc0-d9eb-4bb9-8aff-0718932f689e": "Catalog", + "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e": "IncidentReport", + "bd96a997-8d78-42f6-adf7-8239bc98501c": "OperatingPlatform", + "b86cdded-1078-4e42-b6ba-a718c2c67f62": "DivergentValueAnnotation", + "baa608fa-510e-42d7-95cd-7c12fa37bb35": "JSONFile", + "9882b8aa-eba3-4a30-94c6-43117efd11cc": "DockerContainer", + "52505b06-98a5-481f-8a32-db9b02afabfc": "NamingStandardRule", + "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf": "GovernanceStrategy", + "97f9ffc9-e2f7-4557-ac12-925257345eea": "CertificationType", + "788957f7-a203-45bd-994d-0ab018275821": "DesignModelScope", + "183d2935-a950-4d74-b246-eac3664b5a9d": "ExternalGlossaryLink", + "747f8b86-fe7c-4c9b-ba75-979e093cc307": "RelatedMedia", + "ff4c8484-9127-464a-97fc-99579d5bc429": "LogFile", + "29100f49-338e-4361-b05d-7e4e8e818325": "Topic", + "081abe00-740e-4143-b0d5-a1f55450fc22": "OpenDiscoveryPipeline", + "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E": "PortImplementation", + "aa7c7884-32ce-4991-9c41-9778f1fec6aa": "SoftwareServer", + "578a3510-9ad3-45fe-8ada-e4e9572c37c8": "GovernanceOfficer", + "d81a0425-4e9b-4f31-bc1c-e18c3566da10": "TabularColumn", + "309dfc3c-663b-4732-957b-e4a084436314": "EventBroker", + "b893d6fc-642a-454b-beaf-809ee4dd876a": "AnnotationReview", + "8ef355d4-5cd7-4038-8337-62671b088920": "BareMetalComputer", + "a7defa41-9cfa-4be5-9059-359022bb016d": "GovernancePolicy", + "c19746ac-b3ec-49ce-af4b-83348fc55e07": "Infrastructure", + "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70": "CohortRegistryStore", + "e87ff806-bb9c-4c5d-8106-f38f2dd21037": "EnforcementPointDefinition", + "978e7674-8231-4158-a4e3-a5ccdbcad60e": "RepositoryGovernanceService", + "1a5e159b-913a-43b1-95fe-04433b25fca9": "SchemaAttribute", + "a9f7d15d-b797-450a-8d56-1ba55490c019": "DerivedRelationalColumn", + "9bbae94d-e109-4c96-b072-4f97123f04fd": "NetworkGateway", + "5b7f340e-7dc9-45c0-a636-c20605147c94": "ApplicationService", + "520ebb91-c4eb-4d46-a3b1-974875cdcf0d": "LiteralSchemaType", + "f0438d80-6eb9-4fac-bcc1-5efee5babcfc": "RelationalColumnType", + "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23": "DataSourcePhysicalStatusAnnotation", + "bd4c85d0-d471-4cd2-a193-33b0387a19fd": "MapSchemaType", + "10277b13-509c-480e-9829-bc16d0eafc53": "APIParameter", + "bf17143d-8605-48c2-ba80-64c2ac8f8379": "DesignModel", + "acc7cbc8-09c3-472b-87dd-f78459323dcb": "OpenDiscoveryAnalysisReport", + "f53bd594-5f75-4cf9-9f77-f5c35396590e": "SecurityAccessControl", + "0eb92215-52b1-4fac-92e7-ff02ff385a68": "QueryDataField", + "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5": "PortAlias", + "f45765a9-f3ae-4686-983f-602c348e020d": "RequestForAction", + "151e6dd1-54a0-4b7f-a072-85caa09d1dda": "ITInfrastructure", + "773298be-68ab-4b99-99ab-19eaa886261e": "ArchiveEngine", + "ac406bf8-e53e-49f1-9088-2af28eeee285": "AssetOwner", + "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e": "SearchKeyword", + "3566527f-b1bd-4e7a-873e-a3e04d5f2a14": "Engine", + "ed53a480-e6d4-44f1-aac7-3fac60bbb00e": "DeployedReportType", + "f2a4ff99-1954-48c0-8081-92d1a4dfd910": "DisplayDataContainer", + "cf21abfe-655a-47ba-b9b6-f73394745c80": "DerivedSchemaAttribute", + "191d870c-26f4-4310-a021-b8ca8772719d": "GovernanceService", + "5613677a-865f-474e-8044-4167fa5a31b9": "DivergentAttachmentRelationshipAnnotation", + "86de3633-eec8-4bf9-aad1-e92df1ca2024": "GraphStore", + "42063797-a78a-4720-9353-52026c75f667": "CohortMember", + "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9": "RelationalColumn", + "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d": "ExecutionPointDefinition", + "67228a7a-9d8d-4fa7-b217-17474f1f4ac6": "SetDocumentType", + "0cec20d3-aa29-41b7-96ea-1c544ed32537": "GovernanceObligation", + "b8703d3f-8668-4e6a-bf26-27db1607220d": "IntegrationReport", + "36db26d5-abb2-439b-bc15-d62d373c5db6": "TeamLeader", + "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50": "RootSchemaType", + "23e8287f-5c7e-4e03-8bd3-471fc7fc029c": "ClassificationAnnotation", + "62ef448c-d4c1-4c94-a565-5e5625f6a57b": "SolutionPort", + "a7392281-348d-48a4-bad7-f9742d7696fe": "TabularColumnType", + "ddd29c67-db9a-45ff-92aa-6d17a12a8ee2": "ArrayDocumentType", + "75293260-3373-4777-af7d-7274d5c0b9a5": "AvroFile", + "9f1fb984-db15-43ee-85fb-f8b0353bfb8b": "DataFolder", + "97cba3a0-1dfd-4129-82b6-798de3eec0a4": "ParquetFile", + "ccb408c0-582e-4a3a-a926-7082d53bb669": "ObjectAttribute", + "f6245c25-8f73-45eb-8fb5-fa17a5f27649": "StructDocumentType", + "72ed6de6-79d9-4e7d-aefc-b969382fc4b0": "DataFieldAnnotation", + "2ddc42d3-7791-4b4e-a064-91df9300290a": "TermsAndConditions", + "abc27cf7-e526-4d1b-9c25-7dd60a7993e4": "HadoopCluster", + "b144ee2a-fa71-4897-b51a-dd5239c26910": "DesignModelGroup", + "1449911c-4f44-4c22-abc0-7540154feefb": "DataSet", + "0799569f-0c16-4a1f-86d9-e2e89568f7fd": "Project", + "b83f3d42-f3f7-4155-ae65-58fb44ea7644": "SolutionComponent", + "b0f09598-ceb6-415b-befc-563ecadd5727": "MapDocumentType", + "ba8d29d2-a8a4-41f3-b29f-91ad924dd944": "ArraySchemaType", + "f671e1fc-b204-4ee6-a4e2-da1633ecf50e": "DigitalService", + "368e6fb3-7323-4f81-a723-5182491594bd": "DataProfileLogAnnotation", + "77ccda3d-c4c6-464c-a424-4b2cb27ac06c": "EventTypeList", + "7de10805-7c44-40e3-a410-ffc51306801b": "ValidValuesSet", + "d7df0579-8671-48f0-a8aa-38a487d418c8": "TranslationDetail", + "ba3c8dfa-42a5-492c-bebc-88fa7492e75a": "LastAttachment", + "4ca51fdf-9b70-46b1-bdf6-8860429e78d8": "Threat", + "c6fe40af-cdd6-4ca7-98c4-353d2612921f": "SubjectAreaOwner", + "6bf90c79-32f4-47ad-959c-8fff723fe744": "Meeting", + "49dd320b-4850-4838-9b78-f1285f0e6d2f": "GovernanceConfidentialityLevel", + "0bc3a16a-e8ed-4ad0-a302-0773365fdef0": "MetadataAccessService", + "0798569f-0c16-4a1f-86d9-e2e89568f7fd": "ProjectManager", + "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98": "RelationalTableType", + "90880f0b-c7a3-4d1d-93cc-0b877f27cd33": "EngineHostingService", + "3fa23d4a-aceb-422f-9301-04ed474c6f74": "GovernanceEngine", + "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35": "ActorProfile", + "e87836ad-f8bd-4c52-aecd-0f1872c692e5": "DataFeed", + "c976d88a-2b11-4b40-b972-c38d41bfc6be": "GovernanceAction", + "93dbc58d-c826-4bc2-b36f-195148d46f86": "ToDo", + "befa1458-79b8-446a-b813-536700e60fa8": "OrganizationalControl", + "9ada8e7b-823c-40f7-adf8-f164aabda77e": "GovernanceMetric", + "954421eb-33a6-462d-a8ca-b5709a1bd0d4": "ConnectorType", + "6920fda1-7c07-47c7-84f1-9fb044ae153e": "ObjectSchemaType", + "084cd115-5d0d-4f12-8093-697526a120ea": "GovernanceDomainDescription", + "b3adca2a-ce66-4b29-bf2e-7406ada8ab49": "FingerprintAnnotation", + "fbd42379-f6c3-4f08-b6f7-378565cda993": "Community", + "ba7c7884-32ce-4991-9c41-9778f1fec6aa": "SoftwareServerPlatform", + "3e09cb2b-5f15-4fd2-b004-fe0146ad8628": "Location", + "e2393236-100f-4ac0-a5e6-ce4e96c521e7": "VirtualContainer", + "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3": "DivergentRelationshipAnnotation", + "8f954380-12ce-4a2d-97c6-9ebe250fecf8": "GovernanceRule", + "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3": "DeployedReport", + "ba70f506-1f81-4890-bb4f-1cb1d99c939e": "NamingStandardRuleSet", + "229ed5cc-de31-45fc-beb4-9919fd247398": "FileFolder", + "9bd9d37a-b2ae-48ec-9776-080f667e91c5": "TransientEmbeddedProcess", + "1a226073-9c84-40e4-a422-fbddb9b84278": "Comment", + "30756d0b-362b-4bfa-a0de-fce6a8f47b47": "DataStore", + "fbd42379-f6c3-4f09-b6f7-378565cda993": "CommunityMember", + "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9": "QuerySchemaType", + "9c6ec0c6-0b26-4414-bffe-089144323213": "ReferenceCodeMappingTable", + "8efd6257-a53e-451d-abfc-8e4899c38b1f": "DivergentClassificationAnnotation", + "69751093-35f9-42b1-944b-ba6251ff513d": "SubscriberList", + "33da99cd-8d04-490c-9457-c58908da7794": "DocumentSchemaType", + "8af91d61-2ae8-4255-992e-14d7f745a556": "GovernanceClassificationLevel", + "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a": "GlossaryTerm", + "f0f75fba-9136-4082-8352-0ad74f3c36ed": "PrimitiveSchemaType", + "ac406bf8-e53e-49f1-9088-2af28bbbd285": "Person", + "1f83fc7c-75bb-491d-980d-ff9a6f80ae02": "UserViewService", + "ad6ed361-af14-458f-8fb7-d4c11baa45d2": "DigitalSubscription", + "79296df8-645a-4ef7-a011-912d1cdcf75a": "ContactDetails", + "ac406bf8-e53e-49f1-9088-2af28cccd285": "ContributionRecord", + "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3": "NoteLogAuthor", + "8078e3d1-0c63-4ace-aafa-68498b39ccd6": "Form", + "58280f3c-9d63-4eae-9509-3f223872fb25": "Application", + "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6": "DivergentAttachmentAnnotation", + "1252ce12-540c-4724-ad70-f70940956de0": "GraphVertex", + "7299d721-d17f-4562-8286-bcd451814478": "Rating", + "f20f5f45-1afb-41c1-9a09-34d8812626a4": "RelationalDBSchemaType", + "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f": "SchemaType", + "347005ba-2b35-4670-b5a7-12c9ebed0cf7": "Collection", + "24b092ac-42e9-43dc-aeca-eb034ce307d9": "EnumSchemaType", + "b5ec6e07-6419-4225-9dc4-fb55aba255c6": "SimpleSchemaType", + "492e343f-2516-43b8-94b0-5bae0760dda6": "DesignModelElement", + "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec": "TechnicalControl", + "a518de03-0f72-4944-9cd5-e05b43ae9c5e": "GovernanceStatusLevel", + "2f5796f5-3fac-4501-9d0d-207aa8620d16": "DisplayDataSchemaType", + "dbc20663-d705-4ff0-8424-80c262c6b8e7": "Endpoint", + "46db26d5-abb2-538b-bc15-d62d373c5db6": "TeamMember", + "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67": "GovernanceApproach", + "82f9c664-e59d-484c-a8f3-17088c23a2f3": "VirtualConnection", + "46f9ea33-996e-4c62-a67d-803df75ef9d4": "DisplayDataField", + "1fad7fe4-5115-412b-ae31-a418e93888fe": "IncidentClassifier", + "78de00ea-3d69-47ff-a6d6-767587526624": "ExternalSchemaType", + "eab811ec-556a-45f1-9091-bc7ac8face0f": "DeployedDatabaseSchema", + "54055c38-b9ad-4a66-a75b-14dc643d4c69": "SoftwareCapability", + "f2f5dae9-8410-420f-81f4-5d08543e07aa": "KafkaTopic", + "c04e29b2-2d66-48fc-a20d-e59895de6040": "ControlledGlossaryTerm", + "28452091-6b27-4f40-8e31-47ce34f58387": "VirtualMachine", + "983c5e72-801b-4e42-bc51-f109527f2317": "GraphSchemaType", + "10752b4a-4b5d-4519-9eae-fdd6d162122f": "DataFile", + "1abd16db-5b8a-4fd9-aee5-205db3febe99": "Host", + "21756af1-06c9-4b06-87d2-3ef911f0a58a": "ComponentOwner", + "ce7e72b8-396a-4013-8688-f9d973067425": "RelationalTable", + "39444bf9-638e-4124-a5f9-1b8f3e1b008b": "EnterpriseAccessLayer", + "c9a183ab-67f4-46a4-8836-16fa041769b7": "DeployedConnector", + "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa": "SoftwareArchive", + "e44d5019-37e5-4965-8b89-2bef412833bf": "SolutionOwner", + "06659195-3111-4c91-8931-a65f655378d9": "ConceptModelElement", + "7dbb3e63-138f-49f1-97b4-66313871fc14": "DeployedAPI", + "646727c7-9ad4-46fa-b660-265489ad96c6": "NoteLog", + "6cea5b53-558c-48f1-8191-11d48db29fb4": "Annotation", + "0075d603-1627-41c5-8cae-f5458d1247fe": "MediaCollection", + "6b60a73e-47bc-4096-9073-f94cab975958": "DesignPattern", + "89a76b24-deb8-45bf-9304-a578a610326f": "GovernanceResponsibility", + "283a127d-3acd-4d64-b558-1fce9db9a35b": "APIManager", + "979d97dd-6782-4648-8e2a-8982994533e6": "KeyStoreCollection", + "af536f20-062b-48ef-9c31-1ddd05b04c56": "ExternalReference", + "8bc88aba-d7e4-4334-957f-cfe8e8eadc32": "EventType", + "67e08705-2d2a-4df6-9239-1818161a41e0": "SchemaLinkElement" + }, + "entityTypeNameToGUID": { + "APISchemaType": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8", + "ControlPointDefinition": "a376a993-5f1c-4926-b74e-a15a38e1d55a", + "GovernancePolicy": "a7defa41-9cfa-4be5-9059-359022bb016d", + "DataProfileAnnotation": "bff1f694-afd0-4829-ab11-50a9fbaf2f5f", + "Document": "b463827c-c0a0-4cfb-a2b2-ddc63746ded4", + "DeployedSoftwareComponent": "486af62c-dcfd-4859-ab24-eab2e380ecfd", + "LiteralSchemaType": "520ebb91-c4eb-4d46-a3b1-974875cdcf0d", + "DataFile": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "IntegrationGroup": "4d7c43ec-983b-40e4-af78-6fb66c4f5136", + "Referenceable": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "ContactDetails": "79296df8-645a-4ef7-a011-912d1cdcf75a", + "Endpoint": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "ValidValuesSet": "7de10805-7c44-40e3-a410-ffc51306801b", + "VerificationPointDefinition": "27db26a1-ff66-4042-9932-ddc728b977b9", + "IntegrationReport": "b8703d3f-8668-4e6a-bf26-27db1607220d", + "DataStore": "30756d0b-362b-4bfa-a0de-fce6a8f47b47", + "EventTypeList": "77ccda3d-c4c6-464c-a424-4b2cb27ac06c", + "Actor": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "InformationSupplyChainSegment": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1", + "GovernanceProcedure": "69055d10-51dc-4c2b-b21f-d76fad3f8ef3", + "RelationalTable": "ce7e72b8-396a-4013-8688-f9d973067425", + "ImplementationSnippet": "49990755-2faa-4a62-a1f3-9124b9c73df4", + "SubjectAreaDefinition": "d28c3839-bc6f-41ad-a882-5667e01fea72", + "UserIdentity": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", + "ConceptBeadLink": "13defd95-6452-4398-8382-e47f1a271eff", + "GovernanceDomainDescription": "084cd115-5d0d-4f12-8093-697526a120ea", + "DesignModelScope": "788957f7-a203-45bd-994d-0ab018275821", + "RequestForAction": "f45765a9-f3ae-4686-983f-602c348e020d", + "Project": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "SolutionBlueprint": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", + "IntegrationConnector": "759da11b-ebb6-4382-bdc9-72adc7c922db", + "GlossaryCategory": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "ConnectorCategory": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e", + "NamingStandardRuleSet": "ba70f506-1f81-4890-bb4f-1cb1d99c939e", + "CrowdSourcingContributor": "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3", + "ConceptBeadAttribute": "d804d406-ac74-4f92-9bde-2ba0793680ea", + "RegulationArticle": "829a648d-f249-455d-8127-aeafa021f832", + "GovernanceObligation": "0cec20d3-aa29-41b7-96ea-1c544ed32537", + "CSVFile": "2ccb2117-9cee-47ca-8150-9b3a543adcec", + "IncidentReport": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "SoftwareServerPlatform": "ba7c7884-32ce-4991-9c41-9778f1fec6aa", + "NoteLogAuthor": "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3", + "ExternalSchemaType": "78de00ea-3d69-47ff-a6d6-767587526624", + "DataFileCollection": "962de053-ab51-40eb-b843-85b98013f5ca", + "HadoopCluster": "abc27cf7-e526-4d1b-9c25-7dd60a7993e4", + "KeystoreFile": "17bee904-5b35-4c81-ac63-871c615424a2", + "MetadataRepository": "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9", + "EventSchemaAttribute": "5be4ee8f-4d0c-45cd-a411-22a468950342", + "DocumentSchemaType": "33da99cd-8d04-490c-9457-c58908da7794", + "SecurityService": "2df2069f-6475-400c-bf8c-6d2072a55d47", + "Infrastructure": "c19746ac-b3ec-49ce-af4b-83348fc55e07", + "SchemaElement": "718d4244-8559-49ed-ad5a-10e5c305a656", + "Team": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "RelationalColumn": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "EventBroker": "309dfc3c-663b-4732-957b-e4a084436314", + "MediaFile": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "SubjectAreaOwner": "c6fe40af-cdd6-4ca7-98c4-353d2612921f", + "ConceptModelElement": "06659195-3111-4c91-8931-a65f655378d9", + "ConnectorType": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", + "DatabaseManager": "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9", + "GovernanceMetric": "9ada8e7b-823c-40f7-adf8-f164aabda77e", + "Connection": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "RepositoryGovernanceEngine": "2b3bed05-c227-47d7-87a3-139ab0568361", + "DataManager": "82efa1fa-501f-4ac7-942c-6536c4a1cd61", + "PortAlias": "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5", + "APIManager": "283a127d-3acd-4d64-b558-1fce9db9a35b", + "GraphStore": "86de3633-eec8-4bf9-aad1-e92df1ca2024", + "MetadataRepositoryCohort": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893", + "Agreement": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "TransientEmbeddedProcess": "9bd9d37a-b2ae-48ec-9776-080f667e91c5", + "JSONFile": "baa608fa-510e-42d7-95cd-7c12fa37bb35", + "KafkaTopic": "f2f5dae9-8410-420f-81f4-5d08543e07aa", + "LocationOwner": "3437fd1d-5098-426c-9b55-c94d1fc5dc0e", + "DerivedRelationalColumn": "a9f7d15d-b797-450a-8d56-1ba55490c019", + "BusinessCapability": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", + "CohortRegistryStore": "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70", + "GovernanceActionProcess": "4d3a2b8d-9e2e-4832-b338-21c74e45b238", + "GovernanceRepresentative": "6046bdf8-a37e-4bc4-b51d-325d8c31a96c", + "Port": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "QuerySchemaType": "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9", + "PortImplementation": "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E", + "DerivedSchemaAttribute": "cf21abfe-655a-47ba-b9b6-f73394745c80", + "DataClassAnnotation": "0c8a3673-04ef-406f-899d-e88de67f6176", + "RepositoryGovernanceService": "978e7674-8231-4158-a4e3-a5ccdbcad60e", + "DisplayDataField": "46f9ea33-996e-4c62-a67d-803df75ef9d4", + "Process": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "RootSchemaType": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50", + "GovernanceActionType": "92e20083-0393-40c0-a95b-090724a91ddc", + "MetadataAccessService": "0bc3a16a-e8ed-4ad0-a302-0773365fdef0", + "SearchKeyword": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "SchemaType": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "DeployedReportType": "ed53a480-e6d4-44f1-aac7-3fac60bbb00e", + "InformationSupplyChain": "fa6de61d-98cb-48c4-b21f-ab7186235fd4", + "DigitalServiceManager": "6dfba6ce-e925-4281-880d-d04100c5b991", + "TabularColumnType": "a7392281-348d-48a4-bad7-f9742d7696fe", + "BoundedSchemaType": "77133161-37a9-43f5-aaa3-fd6d7ff92fdb", + "FileFolder": "229ed5cc-de31-45fc-beb4-9919fd247398", + "ActorProfile": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "ClassificationAnnotation": "23e8287f-5c7e-4e03-8bd3-471fc7fc029c", + "ToDo": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "SimpleSchemaType": "b5ec6e07-6419-4225-9dc4-fb55aba255c6", + "DesignModelElement": "492e343f-2516-43b8-94b0-5bae0760dda6", + "ReferenceCodeMappingTable": "9c6ec0c6-0b26-4414-bffe-089144323213", + "BareMetalComputer": "8ef355d4-5cd7-4038-8337-62671b088920", + "SecurityGroup": "042d9b5c-677e-477b-811f-1c39bf716759", + "DataFolder": "9f1fb984-db15-43ee-85fb-f8b0353bfb8b", + "ProjectManager": "0798569f-0c16-4a1f-86d9-e2e89568f7fd", + "GraphSchemaType": "983c5e72-801b-4e42-bc51-f109527f2317", + "SimpleDocumentType": "42cfccbf-cc68-4980-8c31-0faf1ee002d3", + "Glossary": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "APIParameter": "10277b13-509c-480e-9829-bc16d0eafc53", + "FingerprintAnnotation": "b3adca2a-ce66-4b29-bf2e-7406ada8ab49", + "QueryDataField": "0eb92215-52b1-4fac-92e7-ff02ff385a68", + "ComponentOwner": "21756af1-06c9-4b06-87d2-3ef911f0a58a", + "ValidValueDefinition": "09b2133a-f045-42cc-bb00-ee602b74c618", + "DivergentRelationshipAnnotation": "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3", + "Form": "8078e3d1-0c63-4ace-aafa-68498b39ccd6", + "EnumSchemaType": "24b092ac-42e9-43dc-aeca-eb034ce307d9", + "Rating": "7299d721-d17f-4562-8286-bcd451814478", + "PrimitiveSchemaType": "f0f75fba-9136-4082-8352-0ad74f3c36ed", + "DesignPattern": "6b60a73e-47bc-4096-9073-f94cab975958", + "DisplayDataSchemaType": "2f5796f5-3fac-4501-9d0d-207aa8620d16", + "DisplayDataContainer": "f2a4ff99-1954-48c0-8081-92d1a4dfd910", + "DeployedReport": "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3", + "ProjectCharter": "f96b5a32-42c1-4a74-8f77-70a81cec783d", + "SoftwareServerCapability": "fe30a033-8f86-4d17-8986-e6166fa24177", + "PersonRole": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "SchemaAnalysisAnnotation": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", + "ArchiveEngine": "773298be-68ab-4b99-99ab-19eaa886261e", + "GraphVertex": "1252ce12-540c-4724-ad70-f70940956de0", + "DataSourcePhysicalStatusAnnotation": "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23", + "MetadataCollection": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976", + "GovernanceControl": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "DeployedDatabaseSchema": "eab811ec-556a-45f1-9091-bc7ac8face0f", + "DeployedAPI": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "DivergentAttachmentClassificationAnnotation": "a2a5cb74-f8e0-470f-be71-26b7e32166a6", + "TermsAndConditions": "2ddc42d3-7791-4b4e-a064-91df9300290a", + "ComplexSchemaType": "786a6199-0ce8-47bf-b006-9ace1c5510e4", + "CohortMember": "42063797-a78a-4720-9353-52026c75f667", + "GovernanceRole": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee", + "OrganizationalControl": "befa1458-79b8-446a-b813-536700e60fa8", + "ArchiveService": "e6c049e2-56aa-4512-a634-20cd7085e534", + "ControlledGlossaryTerm": "c04e29b2-2d66-48fc-a20d-e59895de6040", + "RelationalColumnType": "f0438d80-6eb9-4fac-bcc1-5efee5babcfc", + "EmbeddedProcess": "8145967e-bb83-44b2-bc8c-68112c6a5a06", + "MetadataRepositoryService": "27891e52-1255-4a33-98a2-377717a25334", + "QualityAnnotation": "72e6473d-4ce0-4609-80a4-e6e949a7f520", + "Regulation": "e3c4293d-8846-4500-b0c0-197d73aba8b0", + "GovernanceProcess": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea", + "Community": "fbd42379-f6c3-4f08-b6f7-378565cda993", + "BusinessOwner": "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5", + "DataFeed": "e87836ad-f8bd-4c52-aecd-0f1872c692e5", + "Location": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "AvroFile": "75293260-3373-4777-af7d-7274d5c0b9a5", + "CertificationType": "97f9ffc9-e2f7-4557-ac12-925257345eea", + "UserViewService": "1f83fc7c-75bb-491d-980d-ff9a6f80ae02", + "DigitalService": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "DataSet": "1449911c-4f44-4c22-abc0-7540154feefb", + "MapDocumentType": "b0f09598-ceb6-415b-befc-563ecadd5727", + "MapSchemaType": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "TranslationDetail": "d7df0579-8671-48f0-a8aa-38a487d418c8", + "DataProcessingDescription": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "GovernanceActionService": "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9", + "DocumentStore": "37156790-feac-4e1a-a42e-88858ae6f8e1", + "StorageVolume": "14145458-f0d0-4955-8899-b8a2874708c9", + "ExternalReference": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "DigitalSubscription": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", + "GovernanceDefinition": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "DivergentClassificationAnnotation": "8efd6257-a53e-451d-abfc-8e4899c38b1f", + "Network": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "Database": "0921c83f-b2db-4086-a52c-0d10e52ca078", + "Asset": "896d14c2-7522-4f6c-8519-757711943fe6", + "SetSchemaType": "b2605d2d-10cd-443c-b3e8-abf15fb051f0", + "ObjectAttribute": "ccb408c0-582e-4a3a-a926-7082d53bb669", + "SoftwareService": "f3f69251-adb1-4042-9d95-70082f95a028", + "SemanticAnnotation": "0b494819-28be-4604-b238-3af20963eea6", + "AssetOwner": "ac406bf8-e53e-49f1-9088-2af28eeee285", + "MetadataIntegrationService": "92f7fe27-cd2f-441c-a084-156821aa5bca", + "BusinessImperative": "bb094b5e-0934-4d8b-8727-48eb5d241a46", + "NetworkGateway": "9bbae94d-e109-4c96-b072-4f97123f04fd", + "SecurityAccessControl": "f53bd594-5f75-4cf9-9f77-f5c35396590e", + "ContributionRecord": "ac406bf8-e53e-49f1-9088-2af28cccd285", + "StructDocumentType": "f6245c25-8f73-45eb-8fb5-fa17a5f27649", + "ParquetFile": "97cba3a0-1dfd-4129-82b6-798de3eec0a4", + "DesignModelGroup": "b144ee2a-fa71-4897-b51a-dd5239c26910", + "DataProcessingPurpose": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "DataItemOwner": "69836cfd-39b8-460b-8727-b04e19210069", + "DataField": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "HostCluster": "9794f42f-4c9f-4fe6-be84-261f0a7de890", + "TeamLeader": "36db26d5-abb2-439b-bc15-d62d373c5db6", + "RelationshipAdviceAnnotation": "740f07dc-4ee8-4c2a-baba-efb55c73eb68", + "InformalTag": "ba846a7b-2955-40bf-952b-2793ceca090a", + "GovernanceStatusLevel": "a518de03-0f72-4944-9cd5-e05b43ae9c5e", + "Application": "58280f3c-9d63-4eae-9509-3f223872fb25", + "Person": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "EnforcementPointDefinition": "e87ff806-bb9c-4c5d-8106-f38f2dd21037", + "VirtualMachine": "28452091-6b27-4f40-8e31-47ce34f58387", + "ApplicationService": "5b7f340e-7dc9-45c0-a636-c20605147c94", + "VirtualContainer": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", + "GovernanceDriver": "c403c109-7b6b-48cd-8eee-df445b258b33", + "DivergentAttachmentRelationshipAnnotation": "5613677a-865f-474e-8044-4167fa5a31b9", + "Organization": "50a61105-35be-4ee3-8b99-bdd958ed0685", + "Meeting": "6bf90c79-32f4-47ad-959c-8fff723fe744", + "GovernanceAction": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "DataFieldAnnotation": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "DataProfileLogAnnotation": "368e6fb3-7323-4f81-a723-5182491594bd", + "OpenDiscoveryEngine": "be650674-790b-487a-a619-0a9002488055", + "QueryDataContainer": "b55c2740-2d41-4433-a099-596c8e9b7bf6", + "LogFile": "ff4c8484-9127-464a-97fc-99579d5bc429", + "SolutionComponent": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "SchemaTypeChoice": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", + "GovernanceClassificationLevel": "8af91d61-2ae8-4255-992e-14d7f745a556", + "DocumentSchemaAttribute": "b5cefb7e-b198-485f-a1d7-8e661012499b", + "SoftwareServer": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", + "ExecutionPointDefinition": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", + "DockerContainer": "9882b8aa-eba3-4a30-94c6-43117efd11cc", + "RelatedMedia": "747f8b86-fe7c-4c9b-ba75-979e093cc307", + "EnterpriseAccessLayer": "39444bf9-638e-4124-a5f9-1b8f3e1b008b", + "DivergentAttachmentValueAnnotation": "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2", + "Annotation": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "GovernanceRule": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "OpenDiscoveryAnalysisReport": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "ArrayDocumentType": "ddd29c67-db9a-45ff-92aa-6d17a12a8ee2", + "DesignModel": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "OpenMetadataRoot": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "ServiceLevelObjective": "22c4e433-1b87-4446-840a-03f83d2dc113", + "VirtualConnection": "82f9c664-e59d-484c-a8f3-17088c23a2f3", + "TabularColumn": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", + "SuspectDuplicateAnnotation": "f703a621-4078-4c07-ab22-e7c334b94235", + "SchemaAttribute": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "GraphEdge": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", + "Threat": "4ca51fdf-9b70-46b1-bdf6-8860429e78d8", + "EventType": "8bc88aba-d7e4-4334-957f-cfe8e8eadc32", + "OperatingPlatform": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "RelationalTableType": "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98", + "DivergentValueAnnotation": "b86cdded-1078-4e42-b6ba-a718c2c67f62", + "OpenDiscoveryService": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "SoftwareCapability": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "Like": "deaa5ca0-47a0-483d-b943-d91c76744e01", + "StructSchemaType": "a13b409f-fd67-4506-8d94-14dfafd250a4", + "GovernanceActionEngine": "5d74250a-57ca-4197-9475-8911f620a94e", + "ITInfrastructure": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "APIOperation": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "Engine": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "SolutionOwner": "e44d5019-37e5-4965-8b89-2bef412833bf", + "SolutionPort": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "KeyStoreCollection": "979d97dd-6782-4648-8e2a-8982994533e6", + "GovernanceResponsibility": "89a76b24-deb8-45bf-9304-a578a610326f", + "TabularFileColumn": "af6265e7-5f58-4a9c-9ae7-8d4284be62bd", + "NoteEntry": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", + "GovernancePrinciple": "3b7d1325-ec2c-44cb-8db0-ce207beb78cf", + "SetDocumentType": "67228a7a-9d8d-4fa7-b217-17474f1f4ac6", + "ConceptBead": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "Catalog": "f4fffcc0-d9eb-4bb9-8aff-0718932f689e", + "DataSourceMeasurementAnnotation": "c85bea73-d7af-46d7-8a7e-cb745910b1df", + "PropertyFacet": "6403a704-aad6-41c2-8e08-b9525c006f85", + "EngineHostingService": "90880f0b-c7a3-4d1d-93cc-0b877f27cd33", + "ReferenceCodeTable": "201f48c5-4e4b-41dc-9c5f-0bc9742190cf", + "TechnicalControl": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec", + "AnnotationReview": "b893d6fc-642a-454b-beaf-809ee4dd876a", + "MediaCollection": "0075d603-1627-41c5-8cae-f5458d1247fe", + "Collection": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "TabularSchemaType": "248975ec-8019-4b8a-9caf-084c8b724233", + "GovernanceZone": "290a192b-42a7-449a-935a-269ca62cfdac", + "RelationalDBSchemaType": "f20f5f45-1afb-41c1-9a09-34d8812626a4", + "DivergentDuplicateAnnotation": "251e443c-dee0-47fa-8a73-1a9d511915a0", + "GovernanceApproach": "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67", + "ArraySchemaType": "ba8d29d2-a8a4-41f3-b29f-91ad924dd944", + "DivergentAttachmentAnnotation": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6", + "ObjectSchemaType": "6920fda1-7c07-47c7-84f1-9fb044ae153e", + "TableDataSet": "20c45531-5d2e-4eb6-9a47-035cb1067b82", + "GovernanceStrategy": "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf", + "KubernetesCluster": "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c", + "LastAttachment": "ba3c8dfa-42a5-492c-bebc-88fa7492e75a", + "GovernanceOfficer": "578a3510-9ad3-45fe-8ada-e4e9572c37c8", + "LicenseType": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", + "ITProfile": "81394f85-6008-465b-926e-b3fae4668937", + "GlossaryTerm": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "APIParameterList": "ba167b12-969f-49d3-8bea-d04228d9a44b", + "Topic": "29100f49-338e-4361-b05d-7e4e8e818325", + "DeployedConnector": "c9a183ab-67f4-46a4-8836-16fa041769b7", + "IncidentClassifier": "1fad7fe4-5115-412b-ae31-a418e93888fe", + "Comment": "1a226073-9c84-40e4-a422-fbddb9b84278", + "GovernanceEngine": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "EventSet": "bead9aa4-214a-4596-8036-aa78395bbfb1", + "NamingStandardRule": "52505b06-98a5-481f-8a32-db9b02afabfc", + "ExternalId": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "Host": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "InformationView": "68d7b905-6438-43be-88cf-5de027b4aaaf", + "SubscriberList": "69751093-35f9-42b1-944b-ba6251ff513d", + "TeamMember": "46db26d5-abb2-538b-bc15-d62d373c5db6", + "SoftwareArchive": "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa", + "DataProcessingAction": "7f53928f-9148-4710-ad37-47633f33cb08", + "CommunityMember": "fbd42379-f6c3-4f09-b6f7-378565cda993", + "OpenDiscoveryPipeline": "081abe00-740e-4143-b0d5-a1f55450fc22", + "GovernanceConfidentialityLevel": "49dd320b-4850-4838-9b78-f1285f0e6d2f", + "NoteLog": "646727c7-9ad4-46fa-b660-265489ad96c6", + "ExternalGlossaryLink": "183d2935-a950-4d74-b246-eac3664b5a9d", + "DataClass": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "GovernanceService": "191d870c-26f4-4310-a021-b8ca8772719d", + "SchemaLinkElement": "67e08705-2d2a-4df6-9239-1818161a41e0" + }, + "relationshipTypeGUIDToName": { + "e47a19d0-7e12-4cf7-9ad7-50856da7faa2": "AssociatedGroup", + "6337c9cd-8e5a-461b-97f9-5151bcb97a9e": "ValidValueMember", + "2cf1e949-7189-4bf2-8ee4-e1318e59abd7": "AttachedStorage", + "d5d588c3-46c9-420c-adff-6031802a7e51": "TermISATypeOFRelationship", + "cb10c107-b7af-475d-aab0-d78b8297b982": "GovernanceRoleAssignment", + "c628938e-815e-47db-8d1c-59bb2e84e028": "CategoryAnchor", + "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1": "AssetLocation", + "01664609-e777-4079-b543-6baffe910ff1": "ProfileIdentity", + "ee8c78a1-a3ae-4824-a4e1-dcb64bc3a45b": "SubjectAreaGovernance", + "806933fb-7925-439b-9876-922a960d2ba1": "GovernanceControlLink", + "f081808d-545a-41cb-a9aa-c4f074a16c78": "ProjectCharterLink", + "b5de932a-738c-4c69-b852-09fec2b9c678": "BusinessCapabilityControls", + "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4": "GovernanceProcessImplementation", + "6447c9cd-8e5a-461b-97f9-5151bcb97a9e": "RelatedDesignPattern", + "d0dd0ac7-01f4-48e0-ae4d-4f7268573fa8": "SolutionComponentImplementation", + "c5e6fada-2c12-46ee-afa9-b71dd1bd8179": "GovernanceDriverLink", + "ea5e126a-a8fa-4a43-bcfa-309a98aa0185": "Antonym", + "d57043c2-eeab-4167-8d0d-2223af8aee93": "DesignModelOwnership", + "d2490c0c-06cc-458a-add2-33cf2f5dd724": "DataFlow", + "f672245f-35b5-4ca7-b645-014cf61d5b75": "GovernanceActionTypeExecutor", + "5652d03a-f6c9-411a-a3e4-f490d3856b64": "SolutionComponentPort", + "5d3c2fb7-fa04-4d77-83cb-fd9216a07769": "AnnotationReviewLink", + "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114": "SolutionComposition", + "f82a96c2-95a3-4223-88c0-9cbf2882b772": "NestedLocation", + "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed": "ReplacementTerm", + "70dbbda3-903f-49f7-9782-32b503c43e0e": "ProcessHierarchy", + "89c3c695-9e8d-4660-9f44-ed971fd55f89": "GovernedBy", + "89c3c695-9e8d-4660-9f44-ed971fd55f88": "GovernanceResults", + "46ec49bf-af66-4575-aab7-06ce895120cd": "TargetForAction", + "91ff7542-c275-4cd3-b367-97eec3360422": "DigitalServiceManagement", + "017d0518-fc25-4e5e-985e-491d91e61e17": "AdjacentLocation", + "4f798c0c-6769-4a2d-b489-d2714d89e0a4": "AttachedNoteLog", + "6932ba75-9522-4a06-a4a4-ee60a4df6aab": "DeployedOn", + "8845990e-7fd9-4b79-a19d-6c4730dadd6b": "GovernanceResponse", + "4a985162-8130-4559-b68e-6e6a5dc19c2a": "DesignModelGroupOwnership", + "2dc524d2-e29f-4186-9081-72ea956c75de": "UsedInContext", + "79ac27f6-be9c-489f-a7c2-b9add0bf705c": "DigitalServiceOperator", + "7eded424-f176-4258-9ae6-138a46b2845f": "AssetDiscoveryReport", + "f2bd7401-c064-41ac-862c-e5bcdc98fa1e": "HostNetwork", + "57e3687e-393e-4c0c-a4f1-a6634075465b": "LastAttachmentLink", + "e3fdafe3-692a-46c6-a595-c538cc189dd9": "AssignmentScope", + "1353400f-b0ab-4ab9-ab09-3045dd8a7140": "MediaReference", + "6b947ccc-1a70-4785-9ca3-d6326bc51291": "DataClassHierarchy", + "74f4094d-dba2-4ad9-874e-d422b69947e2": "Synonym", + "87b7371e-e311-460f-8849-08646d0d6ad3": "SourcedFrom", + "605aaa6d-682e-405c-964b-ca6aaa94be1b": "AnnotationExtension", + "83d12156-f8f3-4b4b-b31b-18c140df9aa3": "RelatedIntegrationReport", + "e5bd6acf-932c-4d9c-85ff-941a8e4451db": "OperatingPlatformManifest", + "d9a39553-6a47-4477-a217-844300c07cf2": "ValidValuesImplementation", + "1a1c3933-a583-4b0c-9e42-c3691296a8e0": "HostClusterMember", + "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b": "SubjectAreaHierarchy", + "970a3405-fde1-4039-8249-9aa5f56d5151": "LinkedFile", + "35e53b7f-2312-4d66-ae90-2d4cb47901ee": "License", + "4a316abe-bccd-4d11-ad5a-4bfb4079b80b": "Peer", + "4cb88900-1446-4eb6-acea-29cd9da45e63": "NestedFile", + "bc5a5eb1-881b-4055-aa2c-78f314282ac2": "CatalogTarget", + "767fb343-4699-49c1-a0f8-af6da78505f8": "DataClassComposition", + "4ab3b466-31bd-48ea-8aa2-75623476f2e2": "APIRequest", + "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62": "RelatedKeyword", + "fcdccfa3-e9f0-4543-8720-1958799fb6dc": "InformationSupplyChainComposition", + "6ae42e95-efc5-4256-bfa8-801140a29d2a": "Translation", + "207e5130-ab7c-4048-9249-a63a43c13d60": "InformationSupplyChainLink", + "1c2622b7-ac21-413c-89e1-6f61f348cd19": "DerivedSchemaTypeQueryTarget", + "03737169-ceb5-45f0-84f0-21c5929945af": "APIOperations", + "746875af-2e41-4d1f-864b-35265df1d5dc": "ProjectTeam", + "c5cb1362-07f6-486b-b80b-ba7922cacee9": "DesignModelImplementation", + "48ac9028-45dd-495d-b3e1-622685b54a01": "FolderHierarchy", + "6f89c320-22aa-4d99-9a97-442e8d214655": "AssociatedSnippet", + "3e844049-e59b-45dd-8e62-cde1add59f9e": "BoundedSchemaElementType", + "d2f8df24-6905-49b8-b389-31b2da156ece": "SearchKeywordLink", + "873e29bd-ca14-4833-a6bb-9ebdf89b5b1b": "DigitalServiceImplementation", + "1dfdec0f-f206-4db7-bac8-ec344205fb3c": "DataProcessingSpecification", + "3eb268f4-9419-4281-a487-d25ccd88eba3": "ExecutionPointUse", + "8335e6ed-fd86-4000-9bc5-5203062f28ba": "SolutionPortDelegation", + "1ebc4fb2-b62a-4269-8f18-e9237a2119ca": "TeamMembership", + "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3": "ApprovedPurpose", + "B216fA00-8281-F9CC-9911-Ae6377f2b457": "PortSchema", + "4ff6d91b-3836-4ba2-9ca9-87da91081faa": "DesignModelElementsInScope", + "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a": "PreferredTerm", + "0ffb9d87-7074-45da-a9b0-ae0859611133": "NestedSchemaAttribute", + "8292343f-6a96-4ca8-a447-38f734c75634": "AttachedTermsAndConditions", + "e2509715-a606-415d-a995-61d00503dad4": "AttachedLike", + "d9567840-9904-43a5-990b-4585c0446e00": "NextGovernanceActionType", + "be12ff15-0721-4a7e-8c98-334eaa884bdf": "RegulationCertificationType", + "8b9dd3ea-057b-4709-9b42-f16098523907": "CohortMemberMetadataCollection", + "56315447-88a6-4235-ba91-fead86524ebf": "ServerAssetUse", + "75026fac-f9e5-4da8-9ad1-e9c68d47f577": "DataProfileLogFile", + "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e": "TopicSubscribers", + "4c579e3d-a4ff-41c1-9931-33e6fc992f2b": "ITInfrastructureProfile", + "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3": "NetworkGatewayLink", + "6189d444-2da4-4cd7-9332-e48a1c340b44": "MapFromElementType", + "e701a5c8-c1ba-4b75-8257-e0a6569eda48": "GovernanceRuleImplementation", + "5ebc4fb2-b62a-4269-8f18-e9237a2229ca": "TeamStructure", + "af2b5fab-8f83-4a2b-b749-1e6219f61f79": "ActionAssignment", + "51465a59-c785-406d-929c-def34596e9af": "DigitalServiceProduct", + "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2": "DigitalServiceDesign", + "4b981d89-e356-4d9b-8f17-b3a8d5a86676": "DeployedVirtualContainer", + "4a316abe-eeee-4d11-ad5a-4bfb4079b80b": "PersonalContribution", + "a94b2929-9e62-4b12-98ab-8ac45691e5bd": "PeerDuplicateLink", + "0908e153-e0fd-499c-8a30-5ea8b81395cd": "ImpactedResource", + "8b7d7da5-0668-4174-a43b-8f8c6c068dd0": "SoftwareServerSupportedCapability", + "0999e2b9-45d6-42c4-9767-4b74b0b48b89": "AssociatedLog", + "017be6a8-0037-49d8-af5d-c45c41f25e0b": "IncidentDependency", + "4c4d1d9c-a9fc-4305-8b71-4e891c0f9ae0": "ZoneGovernance", + "eed5565d-7ac2-46fe-9a26-4722fad8d993": "SchemaTypeImplementation", + "111e6d2e-94e9-43ed-b4ed-f0d220668cbf": "ReferenceValueAssignment", + "707a156b-e579-4482-89a5-de5889da1971": "ValidValue", + "7c7da1a3-01b3-473e-972e-606eff0cb112": "CommunityMembership", + "e777d660-8dbe-453e-8b83-903771f054c0": "ConnectionToAsset", + "eb4f1f98-c649-4560-8a46-da17c02764a9": "SchemaTypeOption", + "f6b5cf4f-7b88-47df-aeb0-d80d28ba1ec1": "RuntimeForProcess", + "d1a9a79f-4c9c-4dff-837e-1353ba51b607": "ProcessInput", + "2b8bfab4-8023-4611-9833-82a0dc95f187": "ServerEndpoint", + "92b75926-8e9a-46c7-9d98-89009f622397": "AssetServerUse", + "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c": "TermHASARelationship", + "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139": "ZoneHierarchy", + "e076fbb3-54f5-46b8-8f1e-a7cb7e792673": "GovernanceDefinitionMetric", + "292125f7-5660-4533-a48a-478c5611922e": "LinkedType", + "58c87647-ada9-4c90-a3c3-a40ace46b1f7": "ReferenceableFacet", + "5ebc4fb2-b62a-4269-8f18-e9237a2119ca": "TeamLeadership", + "60f1e263-e24d-4f20-8c0d-b5e21232cd54": "SchemaAttributeDefinition", + "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2": "ProcessPort", + "576228af-33ec-4588-ba4e-6a864a097e10": "TranslationLink", + "cee3a190-fc8d-4e53-908a-f1b9689581e0": "LinkedMedia", + "9a5d78c2-1716-4783-bfc6-c300a9e2d092": "LinkedExternalSchemaType", + "892a3d1c-cfb8-431d-bd59-c4d38833bfb0": "SolutionLinkingWire", + "2c05beaf-e313-47f8-ac18-2298140b2ad9": "SoftwarePackageDependency", + "73cf5658-6a73-4ebc-8f4d-44fdfac0b437": "ResourceList", + "1a379e55-a4c0-4289-a1a4-b89d257611d1": "ConceptBeadRelationshipEnd", + "7540d9fb-1848-472e-baef-97a44b9f0c45": "KnownDuplicateLink", + "203ce62c-3cbf-4542-bf82-81820cba718f": "ValidValuesMapping", + "9b6a91b5-a339-4245-b208-040805f95a75": "IsATypeOfRelationship", + "696a81f5-ac60-46c7-b9fd-6979a1e7ad27": "TermCategorization", + "f3b18ac7-3357-4a0c-8988-77a98adad5b5": "DesignModelElementOwnership", + "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f": "MoreInformation", + "aca1277b-bf1c-42f5-9b3b-fbc2c9047325": "Actions", + "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb": "VisibleEndpoint", + "33937ece-5ab6-4cd3-a348-b8196ffc3b4e": "ContractLink", + "38c346e4-ddd2-42ef-b4aa-55d53c078d22": "LibraryTermReference", + "cb15c107-b7af-475d-aab0-d78b8297b982": "GovernanceResponsibilityAssignment", + "bc63ac45-b4d0-4fba-b583-92859de77dd8": "ProjectScope", + "6cb9af43-184e-4dfa-854a-1572bcf0fe75": "ContactThrough", + "390559eb-6a0c-4dd7-bc95-b9074caffa7f": "Certification", + "e5d7025d-8b4f-43c7-bcae-1047d650b94a": "SchemaQueryImplementation", + "7d881574-461d-475c-ab44-077451528cb8": "GroupedMedia", + "2d955049-e59b-45dd-8e62-cde1add59f9e": "SchemaAttributeType", + "b9179df5-6e23-4581-a8b0-2919e6322b12": "HostOperatingPlatform", + "1744d72b-903d-4273-9229-de20372a17e2": "DiscoveryInvocationReport", + "4a316abe-bcce-4d11-ad5a-4bfb4079b80b": "PersonRoleAppointment", + "a05f918e-e7e2-419d-8016-5b37406df63a": "Meetings", + "b472a2ec-f419-4d3f-86fb-e9d97365f961": "PermittedProcessing", + "2dcfe62b-341c-4c3d-b336-a94a52c20556": "DesignModelGroupMembership", + "833e849d-eda2-40bb-9e6b-c3ca0b56d581": "DataFieldAnalysis", + "d909eb3b-5205-4180-9f63-122a65b30738": "SoftwareServerDeployment", + "bf02c703-57a2-4ab7-b6db-f49b57b05985": "SolutionPortSchema", + "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82": "ConsolidatedDuplicateLink", + "de5b9501-3ad4-4803-a8b2-e311c72a4336": "APIEndpoint", + "0943e0ba-73ac-476b-8ebe-2ef30ba44976": "OperatingPlatformUse", + "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4": "ProfileLocation", + "b323c9cf-f254-49c7-a391-11222e9da70f": "GlossaryTermEvolution", + "5323a705-4c1f-456a-9741-41fdcb8e93ac": "GovernanceActionRequestSource", + "af904501-6347-4f52-8378-da50e8d74828": "ProcessCall", + "f3066075-9611-4886-9244-32cc6eb07ea9": "HostLocation", + "8f798c0c-6769-4a2d-b489-12714d89e0a4": "NoteLogAuthorship", + "3845b5cc-8c85-462f-b7e6-47472a568793": "GovernanceDefinitionScope", + "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f": "DigitalSupport", + "71e4b6fb-3412-4193-aff3-a16eccd87e8e": "CategoryHierarchyLink", + "ac63ac45-a4d0-4fba-b583-92859de77dd8": "ProjectManagement", + "6aab4ec6-f0c6-4c40-9f50-ac02a3483358": "SchemaTypeSnippet", + "8b9856b3-451e-45fc-afc7-fddefd81a73a": "MapToElementType", + "8c5b1415-2d1f-4190-ba6c-1fdd47f03269": "ExternalIdScope", + "5cabb76a-e25b-4bb5-8b93-768bbac005af": "CollectionMembership", + "887a7132-d6bc-4b92-a483-e80b60c86fb2": "ConnectionEndpoint", + "38edecc6-f385-4574-8144-524a44e3e712": "AttachedNoteLogEntry", + "2480aa71-44c5-414d-8b32-9c4340786d77": "SupportedSoftwareCapability", + "815b004d-73c6-4728-9dd9-536f4fe803cd": "AssetSchemaType", + "73510abd-49e6-4097-ba4b-23bd3ef15baa": "RelationshipAnnotation", + "3da21cc9-3cdc-4d87-89b5-c501740f00b2": "LibraryCategoryReference", + "4df37335-7f0c-4ced-82df-3b2fd07be1bd": "DataClassAssignment", + "633648f3-c951-4ad7-b975-9fc04e0f3d2e": "ConnectorImplementationChoice", + "86b176a2-015c-44a6-8106-54d5d69ba661": "AttributeForSchema", + "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646": "ToDoSource", + "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6": "APIHeader", + "0d90501b-bf29-4621-a207-0c8c953bdac9": "AttachedComment", + "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344": "AttachedRating", + "60f2d263-e24d-4f20-8c0d-b5e22222cd54": "DiscoveredDataField", + "0ac0e793-6727-45d2-9403-06bd19d9ce2e": "DetailedProcessingActions", + "0c42c999-4cac-4da4-afab-0e381f3a818e": "GovernancePolicyLink", + "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96": "ConnectionConnectorType", + "e490772e-c2c5-445a-aea6-1aab3499a76c": "IncidentOriginator", + "1d43d661-bdc7-4a91-a996-3239b8f82e56": "TermAnchor", + "e8303911-ba1c-4640-974e-c4d57ee1b310": "DigitalServiceDependency", + "2726df0e-4f3a-44e1-8433-4ca5301457fd": "SupportedGovernanceService", + "5b6a56f1-68e2-4e10-85f0-fda47a4263fd": "ProjectDependency", + "b1161696-e563-4cf9-9fd9-c0c76e47d063": "RelatedTerm", + "1c811d0b-e9ce-44af-b6ed-133e73322e32": "AgreementActor", + "7786a39c-436b-4538-acc7-d595b5856add": "ExternallySourcedGlossary", + "b827683c-2924-4df3-a92d-7be1888e23c0": "DataContentForDataSet", + "787eaf46-7cf2-4096-8d6e-671a0819d57e": "GovernanceImplementation", + "60f2d263-e24d-4f20-8c0d-b5e12356cd54": "DiscoveredNestedDataField", + "207e2594-e3e4-4be8-a12c-4c401656e241": "ActionTarget", + "b909eb3b-5205-4180-9f63-122a65b30738": "SoftwareServerPlatformDeployment", + "60f2d263-e24d-4f20-8c0d-b5e24648cd54": "SchemaTypeDefinition", + "28f63c94-aaef-4c84-98f7-d77aa605272e": "ImplementedBy", + "47f0ad39-db77-41b0-b406-36b1598e0ba7": "OrganizationalCapability", + "94715275-0520-43e9-81fe-4fe8ec3d8f3a": "InformationSupplyChainImplementation", + "809b7c6c-69f9-4dbf-a5dd-085664499438": "DesignModelGroupHierarchy", + "e8001de2-1bb1-442b-a66f-9addc3641eae": "APIResponse", + "28ab0381-c662-4b6d-b787-5d77208de126": "ExternalIdLink", + "ecf1a3ca-adc5-4747-82cf-10ec590c5c69": "AcceptedAnswer", + "f1ae975f-f11a-467b-8c7a-b023081e4712": "SolutionBlueprintComposition", + "503b4221-71c8-4ba9-8f3d-6a035b27971c": "GraphEdgeLink", + "4db83564-b200-4956-94a4-c95a5c30e65a": "CrowdSourcingContribution", + "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0": "GovernanceActionFlow", + "4b1641c4-3d1a-4213-86b2-d6968b6c65ab": "AttachedTag", + "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4": "DigitalSubscriber", + "c5d48b73-eadd-47db-ab64-3be99b2fb32d": "ValidValuesAssignment", + "2c318c3a-5dc2-42cd-a933-0087d852f67f": "DiscoveryEngineReport", + "7d818a67-ab45-481c-bc28-f6b1caf12f06": "ExternalReferenceLink", + "31e734ec-5baf-4e96-9f0d-e8a85081cb14": "GovernanceActionTypeUse", + "e3e40f99-70fe-478c-9676-78a50cded70b": "ProcessOutput", + "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a": "DataProcessingTarget", + "51d386a3-3857-42e3-a3df-14a6cad08b93": "DiscoveredAnnotation", + "dff45aeb-c65e-428c-9ab3-d756bc5d8dbb": "SupportedDiscoveryService", + "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff": "LineageMapping", + "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2": "RegisteredIntegrationConnector", + "8f1134f6-b9fe-4971-bc57-6e1b8b302b55": "ProjectHierarchy", + "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07": "ForeignKey", + "669e8aa4-c671-4ee7-8d03-f37d09b9d006": "TermTYPEDBYRelationship", + "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f": "EmbeddedConnection", + "e6670973-645f-441a-bec7-6f5570345b92": "SemanticAssignment", + "954cdba1-3d69-4db1-bf0e-d59fd2c25a27": "MetadataCohortPeer", + "4efd16d4-f397-449c-a75d-ebea42fe581b": "NextGovernanceAction", + "e690ab17-6779-46b4-a8f1-6872d88c1bbb": "GovernanceActionExecutor", + "db9583c5-4690-41e5-a580-b4e30a0242d3": "SchemaLinkToType", + "49f2ecb5-6bf7-4324-9824-ac98d595c404": "ResponsibilityStaffContact", + "51a2d263-e24d-4f20-8c0d-b5e12356cd54": "DataClassDefinition", + "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E": "PortDelegation", + "efd8a136-0aea-4668-b91a-30f947e38b82": "Stakeholder", + "5bad1df2-664b-407b-8036-2855e2ede92f": "ConceptBeadAttributeLink", + "35450726-1c32-4d41-b928-22db6d1ae2f4": "ControlFlow", + "a540c361-0ed1-45d6-b525-007592ae806d": "AgreementItem", + "50fab7c7-68bc-452f-b8eb-ec76829cac85": "ISARelationship", + "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd": "SupplementaryProperties" + }, + "relationshipTypeNameToGUID": { + "UsedInContext": "2dc524d2-e29f-4186-9081-72ea956c75de", + "BoundedSchemaElementType": "3e844049-e59b-45dd-8e62-cde1add59f9e", + "AttachedComment": "0d90501b-bf29-4621-a207-0c8c953bdac9", + "ZoneGovernance": "4c4d1d9c-a9fc-4305-8b71-4e891c0f9ae0", + "SolutionComponentImplementation": "d0dd0ac7-01f4-48e0-ae4d-4f7268573fa8", + "ProcessPort": "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2", + "DataFieldAnalysis": "833e849d-eda2-40bb-9e6b-c3ca0b56d581", + "DeployedOn": "6932ba75-9522-4a06-a4a4-ee60a4df6aab", + "AnnotationReviewLink": "5d3c2fb7-fa04-4d77-83cb-fd9216a07769", + "SchemaTypeSnippet": "6aab4ec6-f0c6-4c40-9f50-ac02a3483358", + "ProjectCharterLink": "f081808d-545a-41cb-a9aa-c4f074a16c78", + "KnownDuplicateLink": "7540d9fb-1848-472e-baef-97a44b9f0c45", + "DataClassComposition": "767fb343-4699-49c1-a0f8-af6da78505f8", + "SchemaLinkToType": "db9583c5-4690-41e5-a580-b4e30a0242d3", + "GovernanceDriverLink": "c5e6fada-2c12-46ee-afa9-b71dd1bd8179", + "PersonalContribution": "4a316abe-eeee-4d11-ad5a-4bfb4079b80b", + "DataContentForDataSet": "b827683c-2924-4df3-a92d-7be1888e23c0", + "BusinessCapabilityControls": "b5de932a-738c-4c69-b852-09fec2b9c678", + "RegisteredIntegrationConnector": "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2", + "PortDelegation": "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E", + "ServerEndpoint": "2b8bfab4-8023-4611-9833-82a0dc95f187", + "MoreInformation": "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f", + "ProjectHierarchy": "8f1134f6-b9fe-4971-bc57-6e1b8b302b55", + "AnnotationExtension": "605aaa6d-682e-405c-964b-ca6aaa94be1b", + "DigitalServiceOperator": "79ac27f6-be9c-489f-a7c2-b9add0bf705c", + "ProcessCall": "af904501-6347-4f52-8378-da50e8d74828", + "APIResponse": "e8001de2-1bb1-442b-a66f-9addc3641eae", + "PeerDuplicateLink": "a94b2929-9e62-4b12-98ab-8ac45691e5bd", + "DesignModelGroupMembership": "2dcfe62b-341c-4c3d-b336-a94a52c20556", + "RelatedIntegrationReport": "83d12156-f8f3-4b4b-b31b-18c140df9aa3", + "SchemaAttributeDefinition": "60f1e263-e24d-4f20-8c0d-b5e21232cd54", + "DerivedSchemaTypeQueryTarget": "1c2622b7-ac21-413c-89e1-6f61f348cd19", + "GovernanceActionExecutor": "e690ab17-6779-46b4-a8f1-6872d88c1bbb", + "DiscoveredAnnotation": "51d386a3-3857-42e3-a3df-14a6cad08b93", + "MapToElementType": "8b9856b3-451e-45fc-afc7-fddefd81a73a", + "NestedSchemaAttribute": "0ffb9d87-7074-45da-a9b0-ae0859611133", + "SourcedFrom": "87b7371e-e311-460f-8849-08646d0d6ad3", + "TranslationLink": "576228af-33ec-4588-ba4e-6a864a097e10", + "CommunityMembership": "7c7da1a3-01b3-473e-972e-606eff0cb112", + "ExternalIdScope": "8c5b1415-2d1f-4190-ba6c-1fdd47f03269", + "RelatedKeyword": "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62", + "AcceptedAnswer": "ecf1a3ca-adc5-4747-82cf-10ec590c5c69", + "GovernanceDefinitionMetric": "e076fbb3-54f5-46b8-8f1e-a7cb7e792673", + "SchemaQueryImplementation": "e5d7025d-8b4f-43c7-bcae-1047d650b94a", + "AssetSchemaType": "815b004d-73c6-4728-9dd9-536f4fe803cd", + "TopicSubscribers": "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e", + "OrganizationalCapability": "47f0ad39-db77-41b0-b406-36b1598e0ba7", + "ReplacementTerm": "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed", + "DigitalServiceImplementation": "873e29bd-ca14-4833-a6bb-9ebdf89b5b1b", + "DataFlow": "d2490c0c-06cc-458a-add2-33cf2f5dd724", + "MetadataCohortPeer": "954cdba1-3d69-4db1-bf0e-d59fd2c25a27", + "ConceptBeadRelationshipEnd": "1a379e55-a4c0-4289-a1a4-b89d257611d1", + "AttachedNoteLogEntry": "38edecc6-f385-4574-8144-524a44e3e712", + "CollectionMembership": "5cabb76a-e25b-4bb5-8b93-768bbac005af", + "AssetServerUse": "92b75926-8e9a-46c7-9d98-89009f622397", + "ApprovedPurpose": "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3", + "ContractLink": "33937ece-5ab6-4cd3-a348-b8196ffc3b4e", + "TargetForAction": "46ec49bf-af66-4575-aab7-06ce895120cd", + "ConnectorImplementationChoice": "633648f3-c951-4ad7-b975-9fc04e0f3d2e", + "DesignModelElementOwnership": "f3b18ac7-3357-4a0c-8988-77a98adad5b5", + "ProjectManagement": "ac63ac45-a4d0-4fba-b583-92859de77dd8", + "DataClassDefinition": "51a2d263-e24d-4f20-8c0d-b5e12356cd54", + "Stakeholder": "efd8a136-0aea-4668-b91a-30f947e38b82", + "GovernanceActionFlow": "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0", + "SolutionComposition": "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114", + "APIOperations": "03737169-ceb5-45f0-84f0-21c5929945af", + "LinkedExternalSchemaType": "9a5d78c2-1716-4783-bfc6-c300a9e2d092", + "RelationshipAnnotation": "73510abd-49e6-4097-ba4b-23bd3ef15baa", + "AssociatedGroup": "e47a19d0-7e12-4cf7-9ad7-50856da7faa2", + "GovernancePolicyLink": "0c42c999-4cac-4da4-afab-0e381f3a818e", + "ResponsibilityStaffContact": "49f2ecb5-6bf7-4324-9824-ac98d595c404", + "DiscoveredDataField": "60f2d263-e24d-4f20-8c0d-b5e22222cd54", + "SubjectAreaGovernance": "ee8c78a1-a3ae-4824-a4e1-dcb64bc3a45b", + "PersonRoleAppointment": "4a316abe-bcce-4d11-ad5a-4bfb4079b80b", + "TermTYPEDBYRelationship": "669e8aa4-c671-4ee7-8d03-f37d09b9d006", + "MapFromElementType": "6189d444-2da4-4cd7-9332-e48a1c340b44", + "ValidValueMember": "6337c9cd-8e5a-461b-97f9-5151bcb97a9e", + "SchemaTypeDefinition": "60f2d263-e24d-4f20-8c0d-b5e24648cd54", + "GovernanceResponsibilityAssignment": "cb15c107-b7af-475d-aab0-d78b8297b982", + "Synonym": "74f4094d-dba2-4ad9-874e-d422b69947e2", + "TermISATypeOFRelationship": "d5d588c3-46c9-420c-adff-6031802a7e51", + "SchemaTypeOption": "eb4f1f98-c649-4560-8a46-da17c02764a9", + "DataProcessingSpecification": "1dfdec0f-f206-4db7-bac8-ec344205fb3c", + "EmbeddedConnection": "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f", + "DesignModelGroupOwnership": "4a985162-8130-4559-b68e-6e6a5dc19c2a", + "ConnectionToAsset": "e777d660-8dbe-453e-8b83-903771f054c0", + "RegulationCertificationType": "be12ff15-0721-4a7e-8c98-334eaa884bdf", + "GovernanceActionRequestSource": "5323a705-4c1f-456a-9741-41fdcb8e93ac", + "GovernanceRuleImplementation": "e701a5c8-c1ba-4b75-8257-e0a6569eda48", + "IsATypeOfRelationship": "9b6a91b5-a339-4245-b208-040805f95a75", + "ServerAssetUse": "56315447-88a6-4235-ba91-fead86524ebf", + "SchemaTypeImplementation": "eed5565d-7ac2-46fe-9a26-4722fad8d993", + "RelatedTerm": "b1161696-e563-4cf9-9fd9-c0c76e47d063", + "GovernanceActionTypeExecutor": "f672245f-35b5-4ca7-b645-014cf61d5b75", + "APIHeader": "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6", + "LibraryTermReference": "38c346e4-ddd2-42ef-b4aa-55d53c078d22", + "InformationSupplyChainImplementation": "94715275-0520-43e9-81fe-4fe8ec3d8f3a", + "ImplementedBy": "28f63c94-aaef-4c84-98f7-d77aa605272e", + "GovernanceProcessImplementation": "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4", + "OperatingPlatformManifest": "e5bd6acf-932c-4d9c-85ff-941a8e4451db", + "ITInfrastructureProfile": "4c579e3d-a4ff-41c1-9931-33e6fc992f2b", + "GroupedMedia": "7d881574-461d-475c-ab44-077451528cb8", + "NestedFile": "4cb88900-1446-4eb6-acea-29cd9da45e63", + "HostOperatingPlatform": "b9179df5-6e23-4581-a8b0-2919e6322b12", + "TermAnchor": "1d43d661-bdc7-4a91-a996-3239b8f82e56", + "ForeignKey": "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07", + "DesignModelGroupHierarchy": "809b7c6c-69f9-4dbf-a5dd-085664499438", + "DiscoveryEngineReport": "2c318c3a-5dc2-42cd-a933-0087d852f67f", + "APIRequest": "4ab3b466-31bd-48ea-8aa2-75623476f2e2", + "SoftwareServerDeployment": "d909eb3b-5205-4180-9f63-122a65b30738", + "CohortMemberMetadataCollection": "8b9dd3ea-057b-4709-9b42-f16098523907", + "ReferenceableFacet": "58c87647-ada9-4c90-a3c3-a40ace46b1f7", + "RelatedDesignPattern": "6447c9cd-8e5a-461b-97f9-5151bcb97a9e", + "DigitalServiceDependency": "e8303911-ba1c-4640-974e-c4d57ee1b310", + "NextGovernanceActionType": "d9567840-9904-43a5-990b-4585c0446e00", + "ContactThrough": "6cb9af43-184e-4dfa-854a-1572bcf0fe75", + "License": "35e53b7f-2312-4d66-ae90-2d4cb47901ee", + "SoftwareServerPlatformDeployment": "b909eb3b-5205-4180-9f63-122a65b30738", + "FolderHierarchy": "48ac9028-45dd-495d-b3e1-622685b54a01", + "HostClusterMember": "1a1c3933-a583-4b0c-9e42-c3691296a8e0", + "LibraryCategoryReference": "3da21cc9-3cdc-4d87-89b5-c501740f00b2", + "ZoneHierarchy": "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139", + "OperatingPlatformUse": "0943e0ba-73ac-476b-8ebe-2ef30ba44976", + "DigitalServiceProduct": "51465a59-c785-406d-929c-def34596e9af", + "ConceptBeadAttributeLink": "5bad1df2-664b-407b-8036-2855e2ede92f", + "AttachedStorage": "2cf1e949-7189-4bf2-8ee4-e1318e59abd7", + "ProfileIdentity": "01664609-e777-4079-b543-6baffe910ff1", + "ToDoSource": "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646", + "SolutionPortDelegation": "8335e6ed-fd86-4000-9bc5-5203062f28ba", + "Translation": "6ae42e95-efc5-4256-bfa8-801140a29d2a", + "DataProcessingTarget": "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a", + "SubjectAreaHierarchy": "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b", + "DiscoveredNestedDataField": "60f2d263-e24d-4f20-8c0d-b5e12356cd54", + "ReferenceValueAssignment": "111e6d2e-94e9-43ed-b4ed-f0d220668cbf", + "Actions": "aca1277b-bf1c-42f5-9b3b-fbc2c9047325", + "TeamMembership": "1ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "SoftwarePackageDependency": "2c05beaf-e313-47f8-ac18-2298140b2ad9", + "TeamLeadership": "5ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "SolutionLinkingWire": "892a3d1c-cfb8-431d-bd59-c4d38833bfb0", + "ControlFlow": "35450726-1c32-4d41-b928-22db6d1ae2f4", + "DiscoveryInvocationReport": "1744d72b-903d-4273-9229-de20372a17e2", + "SolutionPortSchema": "bf02c703-57a2-4ab7-b6db-f49b57b05985", + "AssociatedSnippet": "6f89c320-22aa-4d99-9a97-442e8d214655", + "ExternalIdLink": "28ab0381-c662-4b6d-b787-5d77208de126", + "ResourceList": "73cf5658-6a73-4ebc-8f4d-44fdfac0b437", + "CategoryHierarchyLink": "71e4b6fb-3412-4193-aff3-a16eccd87e8e", + "PreferredTerm": "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a", + "DeployedVirtualContainer": "4b981d89-e356-4d9b-8f17-b3a8d5a86676", + "SolutionBlueprintComposition": "f1ae975f-f11a-467b-8c7a-b023081e4712", + "DataClassHierarchy": "6b947ccc-1a70-4785-9ca3-d6326bc51291", + "DesignModelImplementation": "c5cb1362-07f6-486b-b80b-ba7922cacee9", + "GovernanceResults": "89c3c695-9e8d-4660-9f44-ed971fd55f88", + "DesignModelElementsInScope": "4ff6d91b-3836-4ba2-9ca9-87da91081faa", + "HostNetwork": "f2bd7401-c064-41ac-862c-e5bcdc98fa1e", + "AttributeForSchema": "86b176a2-015c-44a6-8106-54d5d69ba661", + "AssetLocation": "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1", + "SoftwareServerSupportedCapability": "8b7d7da5-0668-4174-a43b-8f8c6c068dd0", + "IncidentDependency": "017be6a8-0037-49d8-af5d-c45c41f25e0b", + "SchemaAttributeType": "2d955049-e59b-45dd-8e62-cde1add59f9e", + "GovernanceImplementation": "787eaf46-7cf2-4096-8d6e-671a0819d57e", + "LinkedMedia": "cee3a190-fc8d-4e53-908a-f1b9689581e0", + "AssignmentScope": "e3fdafe3-692a-46c6-a595-c538cc189dd9", + "ValidValuesImplementation": "d9a39553-6a47-4477-a217-844300c07cf2", + "AssociatedLog": "0999e2b9-45d6-42c4-9767-4b74b0b48b89", + "ExternallySourcedGlossary": "7786a39c-436b-4538-acc7-d595b5856add", + "ExternalReferenceLink": "7d818a67-ab45-481c-bc28-f6b1caf12f06", + "MediaReference": "1353400f-b0ab-4ab9-ab09-3045dd8a7140", + "ValidValue": "707a156b-e579-4482-89a5-de5889da1971", + "ExecutionPointUse": "3eb268f4-9419-4281-a487-d25ccd88eba3", + "AgreementItem": "a540c361-0ed1-45d6-b525-007592ae806d", + "GovernanceActionTypeUse": "31e734ec-5baf-4e96-9f0d-e8a85081cb14", + "TeamStructure": "5ebc4fb2-b62a-4269-8f18-e9237a2229ca", + "NextGovernanceAction": "4efd16d4-f397-449c-a75d-ebea42fe581b", + "ProjectDependency": "5b6a56f1-68e2-4e10-85f0-fda47a4263fd", + "DetailedProcessingActions": "0ac0e793-6727-45d2-9403-06bd19d9ce2e", + "AttachedTermsAndConditions": "8292343f-6a96-4ca8-a447-38f734c75634", + "InformationSupplyChainLink": "207e5130-ab7c-4048-9249-a63a43c13d60", + "GovernedBy": "89c3c695-9e8d-4660-9f44-ed971fd55f89", + "DigitalSupport": "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f", + "RuntimeForProcess": "f6b5cf4f-7b88-47df-aeb0-d80d28ba1ec1", + "SupportedDiscoveryService": "dff45aeb-c65e-428c-9ab3-d756bc5d8dbb", + "NestedLocation": "f82a96c2-95a3-4223-88c0-9cbf2882b772", + "ProfileLocation": "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4", + "LinkedFile": "970a3405-fde1-4039-8249-9aa5f56d5151", + "TermCategorization": "696a81f5-ac60-46c7-b9fd-6979a1e7ad27", + "APIEndpoint": "de5b9501-3ad4-4803-a8b2-e311c72a4336", + "VisibleEndpoint": "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb", + "LastAttachmentLink": "57e3687e-393e-4c0c-a4f1-a6634075465b", + "ConnectionEndpoint": "887a7132-d6bc-4b92-a483-e80b60c86fb2", + "CategoryAnchor": "c628938e-815e-47db-8d1c-59bb2e84e028", + "SupportedSoftwareCapability": "2480aa71-44c5-414d-8b32-9c4340786d77", + "ProjectTeam": "746875af-2e41-4d1f-864b-35265df1d5dc", + "ProcessOutput": "e3e40f99-70fe-478c-9676-78a50cded70b", + "LineageMapping": "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff", + "ValidValuesAssignment": "c5d48b73-eadd-47db-ab64-3be99b2fb32d", + "Peer": "4a316abe-bccd-4d11-ad5a-4bfb4079b80b", + "ActionAssignment": "af2b5fab-8f83-4a2b-b749-1e6219f61f79", + "DigitalServiceDesign": "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2", + "Certification": "390559eb-6a0c-4dd7-bc95-b9074caffa7f", + "ConsolidatedDuplicateLink": "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82", + "NetworkGatewayLink": "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3", + "ConnectionConnectorType": "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96", + "Antonym": "ea5e126a-a8fa-4a43-bcfa-309a98aa0185", + "GraphEdgeLink": "503b4221-71c8-4ba9-8f3d-6a035b27971c", + "GlossaryTermEvolution": "b323c9cf-f254-49c7-a391-11222e9da70f", + "SupportedGovernanceService": "2726df0e-4f3a-44e1-8433-4ca5301457fd", + "DigitalServiceManagement": "91ff7542-c275-4cd3-b367-97eec3360422", + "ProjectScope": "bc63ac45-b4d0-4fba-b583-92859de77dd8", + "ISARelationship": "50fab7c7-68bc-452f-b8eb-ec76829cac85", + "Meetings": "a05f918e-e7e2-419d-8016-5b37406df63a", + "SearchKeywordLink": "d2f8df24-6905-49b8-b389-31b2da156ece", + "GovernanceControlLink": "806933fb-7925-439b-9876-922a960d2ba1", + "DesignModelOwnership": "d57043c2-eeab-4167-8d0d-2223af8aee93", + "AttachedRating": "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344", + "DataClassAssignment": "4df37335-7f0c-4ced-82df-3b2fd07be1bd", + "AttachedNoteLog": "4f798c0c-6769-4a2d-b489-d2714d89e0a4", + "LinkedType": "292125f7-5660-4533-a48a-478c5611922e", + "CrowdSourcingContribution": "4db83564-b200-4956-94a4-c95a5c30e65a", + "InformationSupplyChainComposition": "fcdccfa3-e9f0-4543-8720-1958799fb6dc", + "ProcessHierarchy": "70dbbda3-903f-49f7-9782-32b503c43e0e", + "AdjacentLocation": "017d0518-fc25-4e5e-985e-491d91e61e17", + "SemanticAssignment": "e6670973-645f-441a-bec7-6f5570345b92", + "HostLocation": "f3066075-9611-4886-9244-32cc6eb07ea9", + "ProcessInput": "d1a9a79f-4c9c-4dff-837e-1353ba51b607", + "AgreementActor": "1c811d0b-e9ce-44af-b6ed-133e73322e32", + "IncidentOriginator": "e490772e-c2c5-445a-aea6-1aab3499a76c", + "PortSchema": "B216fA00-8281-F9CC-9911-Ae6377f2b457", + "AttachedTag": "4b1641c4-3d1a-4213-86b2-d6968b6c65ab", + "TermHASARelationship": "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c", + "ActionTarget": "207e2594-e3e4-4be8-a12c-4c401656e241", + "GovernanceResponse": "8845990e-7fd9-4b79-a19d-6c4730dadd6b", + "SolutionComponentPort": "5652d03a-f6c9-411a-a3e4-f490d3856b64", + "ValidValuesMapping": "203ce62c-3cbf-4542-bf82-81820cba718f", + "GovernanceDefinitionScope": "3845b5cc-8c85-462f-b7e6-47472a568793", + "DataProfileLogFile": "75026fac-f9e5-4da8-9ad1-e9c68d47f577", + "ImpactedResource": "0908e153-e0fd-499c-8a30-5ea8b81395cd", + "GovernanceRoleAssignment": "cb10c107-b7af-475d-aab0-d78b8297b982", + "AssetDiscoveryReport": "7eded424-f176-4258-9ae6-138a46b2845f", + "AttachedLike": "e2509715-a606-415d-a995-61d00503dad4", + "NoteLogAuthorship": "8f798c0c-6769-4a2d-b489-12714d89e0a4", + "SupplementaryProperties": "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd", + "PermittedProcessing": "b472a2ec-f419-4d3f-86fb-e9d97365f961", + "DigitalSubscriber": "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4", + "CatalogTarget": "bc5a5eb1-881b-4055-aa2c-78f314282ac2" + } + } +}; + + + export const mockData = { - nodes:[ - {"id":"1","label":"Node 1","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Relational Table::(database_column)=Database Column"}, - {"id":"2","label":"Node 2","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, - {"id":"3","label":"Node 3","group":"RelationalTable","properties":{"schema":"Schema","database":"Database"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table"}, - {"id":"4","label":"Node 4","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table::(database_column)=Database Column"}, - {"id":"5","label":"Node 5","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, - {"id":"6","label":"Node 6","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category"}, - {"id":"7","label":"Node 7","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Database Schema::(database_table)=Database Table::(database_column)=Database Column"}, - {"id":"8","label":"Node 8","group":"GlossaryTerm","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Glossary::(category)=TEST::(term)=test_egeria"}, - {"id":"9","label":"Node 9","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data file Field"}, - {"id":"10","label":"Node 10","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data File Field"}, - {"id":"11","label":"Node 11","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category::(category)=Category"} - ], - edges:[ - {"id":"4-8","from":"4","to":"8","label":"SemanticAssignment","type":null}, - {"id":"7-8","from":"7","to":"8","label":"SemanticAssignment","type":null}, - {"id":"1-8","from":"1","to":"8","label":"SemanticAssignment","type":null}, - {"id":"8-11","from":"8","to":"11","label":"TermCategorization","type":"ReferencingCategory"}, - {"id":"8-2","from":"8","to":"2","label":"TermCategorization","type":"ReferencingCategory"}, - {"id":"3-8","from":"3","to":"8","label":"SemanticAssignment","type":null}, - {"id":"8-6","from":"8","to":"6","label":"TermCategorization","type":"ReferencingCategory"}, - {"id":"10-8","from":"10","to":"8","label":"SemanticAssignment","type":null}, - {"id":"9-8","from":"9","to":"8","label":"SemanticAssignment","type":null}, - {"id":"8-5","from":"8","to":"5","label":"TermCategorization","type":"PrimaryCategory"} + nodes: [...Object.keys(data.typeExplorer.entities).map((e) => { + return { + id: data.typeExplorer.entities[e].entityDef.guid, + label: e, + group: 'Port', + guid: data.typeExplorer.entities[e].entityDef.guid, + properties: { + // class: data.typeExplorer.entities[e].entityDefclass, + // headerVersion: data.typeExplorer.entities[e].entityDefheaderVersion, + // guid: data.typeExplorer.entities[e].entityDefguid, + // name: data.typeExplorer.entities[e].entityDefname, + // status: data.typeExplorer.entities[e].entityDefstatus + } + }; + })], + edges: [ + ...Object.keys(data.typeExplorer.entities).filter((e) => { + if(data.typeExplorer.entities[e].entityDef.superType) { + return true; + } else { + return false; + } + }).map((e) => { + return { + id: `${data.typeExplorer.entities[e].entityDef.guid}-${data.typeExplorer.entities[e].entityDef.superType.guid}`, + to: data.typeExplorer.entities[e].entityDef.guid, + from: data.typeExplorer.entities[e].entityDef.superType.guid, + label: 'Label', + type: null + } + }) ] -}; +}; \ No newline at end of file From 385b776498bba04b863012f4a6d392dba14677b7 Mon Sep 17 00:00:00 2001 From: habib Date: Thu, 18 May 2023 15:49:24 +0100 Subject: [PATCH 2/8] Git 150 removed unnecessary comments Signed-off-by: habib --- src/components/App/index.tsx | 12 ------------ src/components/HappiGraph/happi-graph.component.tsx | 4 ---- 2 files changed, 16 deletions(-) diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index f50aa28..1fde12c 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -23,18 +23,6 @@ export function App() { const [opened, setOpened] = useState(false); return <> - {/*
- } - onNodeClick={(d: any) => console.log(d)} - onGraphRender={() => { console.log('Graph rendered');}} /> -
*/} -

TEx

diff --git a/src/components/HappiGraph/happi-graph.component.tsx b/src/components/HappiGraph/happi-graph.component.tsx index 1fca18a..8cd1854 100644 --- a/src/components/HappiGraph/happi-graph.component.tsx +++ b/src/components/HappiGraph/happi-graph.component.tsx @@ -70,7 +70,6 @@ interface State { class HappiGraph extends React.Component { constructor(props: Props) { super(props); - console.log("HAPPI-GRAPH Init"); const mappedNodes = mapNodes(props.rawData.nodes, props.selectedNodeId); const mappedLinks = mapLinks(props.rawData.edges, mappedNodes); let selectedGraphType; @@ -167,9 +166,6 @@ class HappiGraph extends React.Component { nodes: finalNodes, links: finalLinks } = visApproach(nodes, links, graphDirection, nodeDistanceX, nodeDistanceY); - console.log("habib"); - console.log(nodes); - this.setState({ isLoading: false, From 9ca8a768413964489e761806329e457eb231ba44 Mon Sep 17 00:00:00 2001 From: habib Date: Fri, 19 May 2023 16:19:54 +0100 Subject: [PATCH 3/8] Git 150 added and centred customisable title Signed-off-by: habib --- src/components/App/index.scss | 9 +++++++++ src/components/App/index.tsx | 26 ++++++++++++++++++++++++-- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/src/components/App/index.scss b/src/components/App/index.scss index 25535ea..f68056d 100644 --- a/src/components/App/index.scss +++ b/src/components/App/index.scss @@ -12,6 +12,15 @@ html, body { .container { display:flex; + flex-direction: column; + align-items: center; height:100%; width:100%; +} + +#title { + position: absolute; + top: 0; + left: 0; + z-index: 1; } \ No newline at end of file diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index 1fde12c..acf448b 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -22,10 +22,32 @@ export function App() { const [selectedNodeData, setSelectedNodeData] = useState(undefined); const [opened, setOpened] = useState(false); + const selectGraphName = (graphType: GraphType) => { + let graphName = ""; + switch(graphType) { + case GraphType.LINEAGE: { + graphName = "Lineage"; + break; + } + case GraphType.TEX_INHERITANCE: { + graphName = "Tex Entity Inheritance"; + break; + } + case GraphType.TEX_NEIGHBOURHOOD: { + graphName = "Tex Neighbourhood"; + break; + } + default: + graphName = "Lineage"; + console.log('GRAPH_TYPE_NOT_SELECTED'); + } + return graphName; + } + return <>
-
-

TEx

+
+

{selectGraphName(GraphType.TEX_INHERITANCE)}

Date: Fri, 19 May 2023 16:58:10 +0100 Subject: [PATCH 4/8] Git 150 Seperated out tex data from mock data Signed-off-by: habib --- src/components/App/index.tsx | 28 +- src/components/HappiGraph/Tex/dataRender.ts | 47 + src/components/HappiGraph/Tex/mockTexData.ts | 147156 ++++++++++++++ .../HappiGraph/Tex/tex-inheritance.render.ts | 2 +- .../HappiGraph/happi-graph.helpers.ts | 40 +- src/mockData.ts | 147245 +-------------- 6 files changed, 147273 insertions(+), 147245 deletions(-) create mode 100644 src/components/HappiGraph/Tex/dataRender.ts create mode 100644 src/components/HappiGraph/Tex/mockTexData.ts diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index acf448b..aeb8e3f 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -11,6 +11,7 @@ import './index.scss'; import '../HappiGraph/happi-graph.scss'; import { mockData } from '../../mockData'; +import {texMockData} from '../HappiGraph/Tex/dataRender'; import { Modal } from '@mantine/core'; const rawData = { @@ -21,8 +22,9 @@ const rawData = { export function App() { const [selectedNodeData, setSelectedNodeData] = useState(undefined); const [opened, setOpened] = useState(false); + const [graphType, selectGraphType] = useState(GraphType.TEX_INHERITANCE); - const selectGraphName = (graphType: GraphType) => { + const selectGraphName = () => { let graphName = ""; switch(graphType) { case GraphType.LINEAGE: { @@ -44,10 +46,28 @@ export function App() { return graphName; } + const selectGraphData = () => { + let graphData; + switch(graphType) { + case GraphType.LINEAGE: { + graphData = mockData; + break; + } + case GraphType.TEX_INHERITANCE: { + graphData = texMockData; + break; + } + default: + graphData = texMockData; + console.log('GRAPH_TYPE_NOT_SELECTED'); + } + return graphData; + } + return <>
-

{selectGraphName(GraphType.TEX_INHERITANCE)}

+

{selectGraphName()}

- { + 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", + "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", + "Certification" + ], + "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" + ] + }, + "UserViewService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1f83fc7c-75bb-491d-980d-ff9a6f80ae02", + "name": "UserViewService", + "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 user interfaces access to digital resources.", + "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" + ] + }, + "DigitalService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "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 business function implemented using IT.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "DRAFT", + "PREPARED", + "PROPOSED", + "APPROVED", + "REJECTED", + "APPROVED_CONCEPT", + "UNDER_DEVELOPMENT", + "DEVELOPMENT_COMPLETE", + "APPROVED_FOR_DEPLOYMENT", + "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 digital service.", + "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 digital service.", + "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 component.", + "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": [ + "DigitalServiceOperator", + "DigitalServiceDependency", + "DigitalServiceDependency", + "DigitalServiceProduct", + "DigitalSupport", + "DigitalServiceDesign", + "DigitalServiceManagement" + ], + "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" + ] + }, + "DataSet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "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": "Collection of related 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": "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 + } + ] + }, + "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": [ + "DataFileCollection", + "ReferenceCodeMappingTable", + "Form", + "DeployedReport", + "MetadataCollection", + "DeployedDatabaseSchema", + "KeyStoreCollection", + "ReferenceCodeTable", + "MediaCollection", + "TableDataSet", + "Topic", + "InformationView", + "SubscriberList" + ], + "classificationNames": [ + "GovernanceMeasurementsResultsDataSet" + ], + "relationshipNames": [ + "DataContentForDataSet", + "GovernanceResults" + ], + "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" + ] + }, + "MapSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "name": "MapSchemaType", + "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 for a map between a key and value.", + "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": [ + "MapToElementType", + "MapFromElementType" + ], + "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" + ] + }, + "TranslationDetail": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d7df0579-8671-48f0-a8aa-38a487d418c8", + "name": "TranslationDetail", + "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 collection of translated properties.", + "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": "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": "Translation of the name or displayName property.", + "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": "Translation of the description property.", + "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": "Language for the translation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "additionalTranslations", + "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": "Translations of other string properties found in the linked entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "locale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Locale for the translation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "languageCode", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for identifying the language - for example from ISO-639.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "TranslationLink" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "DataProcessingDescription": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "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": "Name of the data processing description.", + "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 data processing description.", + "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": [ + "DataProcessingSpecification", + "DetailedProcessingActions", + "PermittedProcessing" + ], + "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" + ] + }, + "GovernanceActionService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9", + "name": "GovernanceActionService", + "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 that conforms to the Governance Action Framework (GAF).", + "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": "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" + ] + }, + "DocumentStore": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "37156790-feac-4e1a-a42e-88858ae6f8e1", + "name": "DocumentStore", + "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": "Identifies a data store as one that contains documents.", + "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" + ] + }, + "StorageVolume": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "14145458-f0d0-4955-8899-b8a2874708c9", + "name": "StorageVolume", + "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 persistent storage volume.", + "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": [], + "classificationNames": [], + "relationshipNames": [ + "AttachedStorage" + ], + "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" + ] + }, + "ExternalReference": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A link to an external reference source such as a web page, article or book.", + "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": "pageRange", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "copyright", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Copyright statement associated with this external source.", + "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 to use when displaying reference in a list.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationNumbers", + "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", + "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 external source. For example, its significance and use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "edition", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 edition for this external source.", + "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": "referenceVersion", + "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publication title of the external source.", + "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": "Network address where this external source can be accessed from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceAbstract", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Summary of the key messages in the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeries", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 journal or series of publications that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationCity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "City where the publishers are based.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "license", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 license associated with this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "numberOfPages", + "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 pages that this external source has.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeriesVolume", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 volume in the publication series that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 revision or version of the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attribution", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Attribution statement to use when consuming this external resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publisher", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publisher responsible for producing this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationYear", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Year when the publication of this version/edition of the external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationDate", + "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 when this version/edition of this external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "authors", + "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 authors for the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "firstPublicationDate", + "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 of the first published version/edition of this external source.", + "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": [ + "RelatedMedia", + "ExternalGlossaryLink" + ], + "classificationNames": [], + "relationshipNames": [ + "ContractLink", + "ExternalReferenceLink" + ], + "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" + ] + }, + "DigitalSubscription": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", + "name": "DigitalSubscription", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A specialized agreement that represents a subscription to a digital service or digital product.", + "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": "supportLevel", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of support agreed for the subscriber.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "serviceLevels", + "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": "Levels of service agreed with the subscriber.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [ + { + "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 + }, + { + "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": [ + "DigitalSubscriber" + ], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "ContractLink", + "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", + "AgreementItem", + "AttachedTermsAndConditions", + "InformationSupplyChainLink", + "InformationSupplyChainLink", + "GovernedBy", + "LineageMapping", + "LineageMapping", + "ValidValuesAssignment", + "Certification", + "ConsolidatedDuplicateLink", + "ConsolidatedDuplicateLink", + "Meetings", + "SearchKeywordLink", + "AttachedRating", + "DataClassAssignment", + "AttachedNoteLog", + "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" + ] + }, + "GovernanceDefinition": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Defines an aspect of the governance program.", + "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", + "DEPRECATED", + "OTHER", + "DELETED" + ], + "initialStatus": "DRAFT", + "propertiesDefinition": [ + { + "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 + } + ] + }, + "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": [ + "GovernancePolicy", + "GovernanceControl", + "CertificationType", + "DataProcessingPurpose", + "GovernanceDriver", + "LicenseType" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceDefinitionMetric", + "ExecutionPointUse", + "GovernedBy", + "GovernanceDefinitionScope" + ], + "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" + ] + }, + "DivergentClassificationAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8efd6257-a53e-451d-abfc-8e4899c38b1f", + "name": "DivergentClassificationAnnotation", + "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 classification 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": "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" + ] + }, + "Network": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "name": "Network", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Inter-connectivity for systems.", + "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": [], + "relationshipNames": [ + "VisibleEndpoint", + "NetworkGatewayLink" + ], + "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" + ] + }, + "Database": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0921c83f-b2db-4086-a52c-0d10e52ca078", + "name": "Database", + "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 relational data.", + "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": "importedFrom", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 connector where database is imported from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "instance", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 database instance.", + "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 database.", + "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": "databaseVersion", + "attributeDescription": "Deprecated attribute. Use the databaseVersion attribute to define the version number of database.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "databaseVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 database.", + "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 database.", + "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" + ] + }, + "Asset": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "The description of an asset that needs to be catalogued and governed.", + "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": "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 + } + ] + }, + "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": [ + "DataStore", + "Infrastructure", + "Process", + "DeployedReportType", + "DeployedAPI", + "DataFeed", + "DataSet", + "DesignModel" + ], + "classificationNames": [ + "LineageLog", + "MeteringLog", + "AssetOrigin", + "LogAnalysis", + "MobileAsset", + "ReferenceData", + "AuditLog", + "ExceptionBacklog", + "AssetZoneMembership" + ], + "relationshipNames": [ + "DeployedOn", + "DataContentForDataSet", + "AssetSchemaType", + "ConnectionToAsset", + "ServerAssetUse", + "ITInfrastructureProfile", + "SoftwarePackageDependency", + "AssetLocation", + "ValidValuesImplementation", + "AssociatedLog", + "ProcessOutput", + "AssetDiscoveryReport" + ], + "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" + ] + }, + "ObjectAttribute": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ccb408c0-582e-4a3a-a926-7082d53bb669", + "name": "ObjectAttribute", + "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": "An attribute in an object 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" + ] + }, + "SoftwareService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f3f69251-adb1-4042-9d95-70082f95a028", + "name": "SoftwareService", + "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": "Defines a capability that provides externally callable functions to other services.", + "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": [ + "SecurityService", + "MetadataAccessService", + "MetadataRepositoryService", + "UserViewService", + "MetadataIntegrationService", + "ApplicationService", + "EngineHostingService" + ], + "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" + ] + }, + "SemanticAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0b494819-28be-4604-b238-3af20963eea6", + "name": "SemanticAnnotation", + "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 of likely mappings to Glossary Terms for 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": "informalTerm", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Suggested term based on the analysis.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "candidateGlossaryTermGUIDs", + "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 potentially matching glossary terms.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "informalCategory", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Suggested category based on the analysis.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "candidateGlossaryCategoryGUIDs", + "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 potentially matching glossary categories.", + "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" + ] + }, + "AssetOwner": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28eeee285", + "name": "AssetOwner", + "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 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" + }, + "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" + ] + }, + "MetadataIntegrationService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "92f7fe27-cd2f-441c-a084-156821aa5bca", + "name": "MetadataIntegrationService", + "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 exchanges metadata between servers.", + "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" + ] + }, + "BusinessImperative": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bb094b5e-0934-4d8b-8727-48eb5d241a46", + "name": "BusinessImperative", + "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": "A mandatory goal that must be met by the business for it to be successful.", + "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" + ] + }, + "NetworkGateway": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9bbae94d-e109-4c96-b072-4f97123f04fd", + "name": "NetworkGateway", + "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 connection point enabling network traffic to pass between two networks.", + "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": "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": [ + "NetworkGatewayLink" + ], + "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" + ] + }, + "SecurityAccessControl": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f53bd594-5f75-4cf9-9f77-f5c35396590e", + "name": "SecurityAccessControl", + "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 technical control that defines who has access to the attach element.", + "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": "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" + ] + }, + "ContributionRecord": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28cccd285", + "name": "ContributionRecord", + "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 record of the contribution of an individual.", + "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": "isPublic", + "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 the contribution visible to other collaborators?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "karmaPoints", + "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": "Points capturing a person's engagement with open metadata.", + "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": [ + "PersonalContribution" + ], + "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" + ] + }, + "ParquetFile": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "97cba3a0-1dfd-4129-82b6-798de3eec0a4", + "name": "ParquetFile", + "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 which is formatted using the Apache Parquet format.", + "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": "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" + ] + }, + "DesignModelGroup": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b144ee2a-fa71-4897-b51a-dd5239c26910", + "name": "DesignModelGroup", + "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": "A collection of related design model elements within a model.", + "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": [ + "DesignModelGroupMembership" + ], + "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" + ] + }, + "DataProcessingPurpose": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "name": "DataProcessingPurpose", + "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": "Expected outcome, service or value from processing.", + "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": [ + "ApprovedPurpose", + "PermittedProcessing" + ], + "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" + ] + }, + "DataItemOwner": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "69836cfd-39b8-460b-8727-b04e19210069", + "name": "DataItemOwner", + "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 particular type 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": "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" + ] + }, + "DataField": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "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": "A description of a data field discovered within 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": "dataFieldName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 the data field.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "dataFieldSortOrder", + "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": "Sort order for the values of the data field.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "dataFieldType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 field.", + "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": "Default value that is added to the field if no value is specified.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "dataFieldDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Optional descriptive information about a data field.", + "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": "dataFieldAliases", + "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": "Optional list of aliases for the data field.", + "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 + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "DataFieldAnalysis", + "SchemaAttributeDefinition", + "DiscoveredDataField", + "DiscoveredNestedDataField", + "DiscoveredNestedDataField" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "HostCluster": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890", + "name": "HostCluster", + "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 group of hosts operating together to provide a scalable 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": [ + "HadoopCluster", + "KubernetesCluster" + ], + "classificationNames": [], + "relationshipNames": [ + "HostClusterMember" + ], + "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" + ] + }, + "TeamLeader": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "36db26d5-abb2-439b-bc15-d62d373c5db6", + "name": "TeamLeader", + "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 leading a team.", + "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" + ] + }, + "RelationshipAdviceAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "740f07dc-4ee8-4c2a-baba-efb55c73eb68", + "name": "RelationshipAdviceAnnotation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "name": "DataFieldAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A recommendation of the relationships that could be added to all or part 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": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "relationshipTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 potential relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "relationshipProperties", + "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 to add to the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "relatedEntityGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "entity that should be linked to the asset being analyzed", + "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" + ] + }, + "InformalTag": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ba846a7b-2955-40bf-952b-2793ceca090a", + "name": "InformalTag", + "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 descriptive tag for 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": "isPublic", + "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 the tag visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "tagName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive name of the tag.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "tagDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "More detail on the meaning of the tag.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "AttachedTag" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "GovernanceStatusLevel": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "a518de03-0f72-4944-9cd5-e05b43ae9c5e", + "name": "GovernanceStatusLevel", + "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 value to represent a specific level of status in a governance element.", + "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": "levelIdentifier", + "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": "Numeric value for the classification level", + "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 descriptive name 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": "Explanation of the meaning of this level of the classification", + "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" + ] + }, + "Application": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "58280f3c-9d63-4eae-9509-3f223872fb25", + "name": "Application", + "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 server capability supporting a specific business function.", + "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": "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" + ] + }, + "Person": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "description": "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": "preferredLanguage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Spoken or written language preferred by the person.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "employeeType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 used by employer typically to describe the type of employment contract.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "surname", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 family name of the person.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "initials", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "First letter of each of the person's given names.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "jobTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Role or level in the organization.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "givenNames", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 strings that are the part of a person's name that is not their surname.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "fullName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 or official name of the individual (if different from known name).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "isPublic", + "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 the profile visible to other collaborators?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pronouns", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 pronouns to use when addressing this person.", + "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": "The courtesy title for the person.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "employeeNumber", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 unique identifier of the person used by their employer.", + "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": [], + "classificationNames": [], + "relationshipNames": [ + "PersonalContribution", + "PersonRoleAppointment", + "Peer", + "Peer" + ], + "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" + ] + }, + "EnforcementPointDefinition": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e87ff806-bb9c-4c5d-8106-f38f2dd21037", + "name": "EnforcementPointDefinition", + "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 change is made to enforce a governance requirement.", + "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" + ] + }, + "VirtualMachine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "28452091-6b27-4f40-8e31-47ce34f58387", + "name": "VirtualMachine", + "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 virtual machine that uses a hypervisor to virtualize hardware.", + "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" + ] + }, + "ApplicationService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5b7f340e-7dc9-45c0-a636-c20605147c94", + "name": "ApplicationService", + "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": "A software service supporting a single reusable business function.", + "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" + ] + }, + "VirtualContainer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", + "name": "VirtualContainer", + "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": "Container-based virtual host.", + "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": [ + "DockerContainer" + ], + "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" + ] + }, + "GovernanceDriver": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "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 reason for having the governance program.", + "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": [ + "RegulationArticle", + "Regulation", + "BusinessImperative", + "Threat", + "GovernanceStrategy" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceDriverLink", + "GovernanceDriverLink", + "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" + ] + }, + "DivergentAttachmentRelationshipAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5613677a-865f-474e-8044-4167fa5a31b9", + "name": "DivergentAttachmentRelationshipAnnotation", + "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 relationships 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": "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": "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" + ] + }, + "Organization": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "50a61105-35be-4ee3-8b99-bdd958ed0685", + "name": "Organization", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Describes a specific organization.", + "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 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 + }, + { + "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": [], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "OrganizationalCapability", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "TargetForAction", + "Stakeholder", + "Stakeholder", + "RelationshipAnnotation", + "RelationshipAnnotation", + "DataProcessingSpecification", + "GovernanceActionRequestSource", + "ImplementedBy", + "ImplementedBy", + "ReferenceableFacet", + "ContactThrough", + "License", + "DigitalServiceProduct", + "ProfileIdentity", + "ToDoSource", + "DataProcessingTarget", + "ReferenceValueAssignment", + "Actions", + "TeamMembership", + "TeamLeadership", + "ControlFlow", + "ControlFlow", + "AssociatedSnippet", + "ExternalIdLink", + "ResourceList", + "ResourceList", + "DesignModelImplementation", + "AssignmentScope", + "AssignmentScope", + "AssociatedLog", + "ExternalReferenceLink", + "MediaReference", + "AgreementItem", + "TeamStructure", + "TeamStructure", + "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" + ] + }, + "Meeting": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6bf90c79-32f4-47ad-959c-8fff723fe744", + "name": "Meeting", + "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": "Two or more people come together to discuss a topic, agree and action or exchange information.", + "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": "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 of the meeting.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "startTime", + "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 time of the meeting.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "endTime", + "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": "End time of the meeting.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "objective", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Reason for the meeting and intended outcome.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "minutes", + "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": "Description of what happened at the meeting.", + "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": [ + "Meetings" + ], + "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" + ] + }, + "GovernanceAction": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "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 governance action that has been created to support the active governance of the open metadata ecosystem and/or digital landscape.", + "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": "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 belongs to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionGuards", + "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 returned by the governance action service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 request type used to call the service.", + "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 governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mandatoryGuards", + "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 list of guards that must be received before this governance action can progress.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameters", + "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 configure the governance service for this type of request.", + "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 action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "governanceActionTypeGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 governance action type that initiated this request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "governanceActionTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 name of the governance action type that initiated this request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "executorEngineGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 governance engine nominated to run the request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "executorEngineName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 governance engine nominated to run the request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", + "name": "GovernanceActionStatus", + "description": "Defines the current execution status of a governance action.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Requested", + "description": "The governance action has been created and is pending." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Approved", + "description": "The governance action is approved to run." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Waiting", + "description": "The governance action is waiting for its start time or the right conditions to run." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Activating", + "description": "The governance service for the governance action is being initialized in the governance engine." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "InProgress", + "description": "The governance engine is running the associated governance service for the governance action." + }, + { + "headerVersion": 1, + "ordinal": 10, + "value": "Actioned", + "description": "The governance service for the governance action has successfully completed processing." + }, + { + "headerVersion": 1, + "ordinal": 11, + "value": "Invalid", + "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." + }, + { + "headerVersion": 1, + "ordinal": 12, + "value": "Ignored", + "description": "The governance action has not been run because a different governance action was chosen." + }, + { + "headerVersion": 1, + "ordinal": 13, + "value": "Failed", + "description": "The governance service for the governance action failed to execute." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Undefined or unknown governance action status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Current lifecycle state of the governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "processName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 name of the process that initiated this request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "receivedGuards", + "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 received from the previous governance action service(s).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionMessage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Message to provide additional information on the results of running the governance service or the reasons for its failure.", + "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": "processingEngineUserId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Governance engine responsible for this governance action.", + "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 + } + ] + }, + "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": [ + "TargetForAction", + "GovernanceActionRequestSource", + "NextGovernanceAction", + "NextGovernanceAction" + ], + "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" + ] + }, + "DataFieldAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "name": "DataFieldAnnotation", + "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 collection of properties about 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" + }, + "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": [ + "DataProfileAnnotation", + "RequestForAction", + "DataClassAnnotation", + "ClassificationAnnotation", + "FingerprintAnnotation", + "QualityAnnotation", + "SemanticAnnotation", + "RelationshipAdviceAnnotation", + "DataProfileLogAnnotation" + ], + "classificationNames": [], + "relationshipNames": [ + "DataFieldAnalysis" + ], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "DataProfileLogAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "368e6fb3-7323-4f81-a723-5182491594bd", + "name": "DataProfileLogAnnotation", + "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 link to a log file containing properties about 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" + }, + "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": [ + "DataProfileLogFile" + ], + "inheritedRelationshipNames": [ + "DataFieldAnalysis", + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "OpenDiscoveryEngine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "be650674-790b-487a-a619-0a9002488055", + "name": "OpenDiscoveryEngine", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server capability for running open discovery services.", + "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" + }, + "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": [ + "DiscoveryEngineReport" + ], + "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" + ] + }, + "QueryDataContainer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b55c2740-2d41-4433-a099-596c8e9b7bf6", + "name": "QueryDataContainer", + "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 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" + ] + }, + "LogFile": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ff4c8484-9127-464a-97fc-99579d5bc429", + "name": "LogFile", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Identifies a data file as one containing log records.", + "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 log file.", + "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 log 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": [], + "classificationNames": [], + "relationshipNames": [ + "DataProfileLogFile" + ], + "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" + ] + }, + "SolutionComponent": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "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 a well-defined capability within a solution.", + "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 component.", + "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 component.", + "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 component.", + "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": [ + "SolutionComposition", + "SolutionComposition", + "SolutionBlueprintComposition", + "SolutionComponentPort" + ], + "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" + ] + }, + "SchemaTypeChoice": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", + "name": "SchemaTypeChoice", + "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 list of alternative schema types for attribute.", + "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": [ + "EventTypeList" + ], + "classificationNames": [], + "relationshipNames": [ + "SchemaTypeOption" + ], + "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" + ] + }, + "GovernanceClassificationLevel": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8af91d61-2ae8-4255-992e-14d7f745a556", + "name": "GovernanceClassificationLevel", + "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 value to represent a specific level in a governance classification definition.", + "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": "levelIdentifier", + "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": "Numeric value for the classification level", + "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 descriptive name 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": "Explanation of the meaning of this level of the classification", + "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" + ] + }, + "DocumentSchemaAttribute": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b5cefb7e-b198-485f-a1d7-8e661012499b", + "name": "DocumentSchemaAttribute", + "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 hierarchical 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": [], + "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" + ] + }, + "SoftwareServer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", + "name": "SoftwareServer", + "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 applications and data stores.", + "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": "serverVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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.", + "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.", + "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.", + "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": "serverVersion", + "attributeDescription": "Deprecated attribute. Use the serverVersion attribute to define the version number of software server.", + "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'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.", + "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": [ + "CloudTenant" + ], + "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" + ] + }, + "ExecutionPointDefinition": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", + "name": "ExecutionPointDefinition", + "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 an activity that supports the implementation of a governance requirement.", + "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": "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 + } + ] + }, + "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": [ + "ControlPointDefinition", + "VerificationPointDefinition", + "EnforcementPointDefinition" + ], + "classificationNames": [], + "relationshipNames": [ + "ExecutionPointUse" + ], + "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" + ] + }, + "DockerContainer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "9882b8aa-eba3-4a30-94c6-43117efd11cc", + "name": "DockerContainer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", + "name": "VirtualContainer", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A virtual container using the docker platform.", + "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" + ] + }, + "RelatedMedia": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "747f8b86-fe7c-4c9b-ba75-979e093cc307", + "name": "RelatedMedia", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Images, video or sound media.", + "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": "mediaTypeOtherId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 code (typically a valid value definition) that defines the media type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "defaultMediaUsage", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c6861a72-7485-48c9-8040-876f6c342b61", + "name": "MediaUsage", + "description": "Defines how a related media reference should be used.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Icon", + "description": "Provides a small image to represent the asset in tree views and graphs." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Thumbnail", + "description": "Provides a small image about the asset that can be used in lists." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Illustration", + "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "UsageGuidance", + "description": "Provides guidance to a person on how to use the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Default media usage by a consumer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "9548390c-69f5-4dc6-950d-6fdffb257b56", + "name": "MediaType", + "description": "Defines the type of media.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Image", + "description": "The media is an image." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Audio", + "description": "The media is an audio recording." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Document", + "description": "The media is a text document, probably rich text." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Video", + "description": "The media is a video recording." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of media, probably not supported." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of media.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "defaultMediaUsageOtherId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 code (typically a valid value definition) that defines the media use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaUsage", + "attributeType": { + "class": "CollectionDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "COLLECTION", + "guid": "0103fe10-98b0-4910-8ee0-21d529f7ff6d", + "name": "array", + "description": "An array of integers.", + "collectionDefCategory": "OM_COLLECTION_ARRAY", + "argumentCount": 1, + "argumentTypes": [ + "OM_PRIMITIVE_TYPE_INT" + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "defaultMediaUsage", + "attributeDescription": "Type of recommended media usage.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [ + { + "headerVersion": 1, + "attributeName": "pageRange", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "copyright", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Copyright statement associated with this external source.", + "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 to use when displaying reference in a list.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationNumbers", + "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", + "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 external source. For example, its significance and use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "edition", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 edition for this external source.", + "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": "referenceVersion", + "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publication title of the external source.", + "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": "Network address where this external source can be accessed from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceAbstract", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Summary of the key messages in the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeries", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 journal or series of publications that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationCity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "City where the publishers are based.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "license", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 license associated with this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "numberOfPages", + "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 pages that this external source has.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeriesVolume", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 volume in the publication series that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 revision or version of the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attribution", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Attribution statement to use when consuming this external resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publisher", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publisher responsible for producing this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationYear", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Year when the publication of this version/edition of the external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationDate", + "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 when this version/edition of this external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "authors", + "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 authors for the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "firstPublicationDate", + "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 of the first published version/edition of this external source.", + "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": [ + "MediaReference" + ], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "ContractLink", + "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", + "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" + ] + }, + "EnterpriseAccessLayer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "39444bf9-638e-4124-a5f9-1b8f3e1b008b", + "name": "EnterpriseAccessLayer", + "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": "Repository services for the Open Metadata Access Services (OMAS) supporting federated queries and aggregated events from the connected cohorts.", + "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": "accessedMetadataCollectionId", + "attributeDescription": "Deprecated attribute. Use the accessedMetadataCollectionId attribute to define the unique identifier for the metadata collection accessed through this enterprise access layer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "topicRoot", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Root of topic names used by the Open Metadata access Services (OMASs).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "accessedMetadataCollectionId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 accessed through this enterprise access layer.", + "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": [], + "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" + ] + }, + "DivergentAttachmentValueAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2", + "name": "DivergentAttachmentValueAnnotation", + "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 the property values in attachments 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": "divergentPropertyNames", + "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" + ] + }, + "Annotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "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": "A set of results from a discovery service describing related properties 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": "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 + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [ + "SchemaAnalysisAnnotation", + "DataFieldAnnotation", + "SuspectDuplicateAnnotation", + "DataSourceMeasurementAnnotation", + "DivergentDuplicateAnnotation" + ], + "classificationNames": [], + "relationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "DiscoveredAnnotation" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "GovernanceRule": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "name": "GovernanceRule", + "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 logic expression.", + "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": [ + "NamingStandardRule" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceRuleImplementation" + ], + "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" + ] + }, + "OpenDiscoveryAnalysisReport": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "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 set of results from an open discovery service.", + "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": "discoveryServiceStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b2fdeddd-24eb-4e9c-a2a4-2693828d4a69", + "name": "DiscoveryServiceRequestStatus", + "description": "Defines the progress or completion of a requested discovery service.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Activating", + "description": "Discovery service is being initialized in the discovery engine." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "InProgress", + "description": "Discovery service is executing." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Failed", + "description": "Discovery service has failed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Completed", + "description": "Discovery service has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Other", + "description": "Discovery service has a status that is not covered by this enum." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery service status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of a requested discovery service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "discoveryRequestStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ecb48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "DiscoveryRequestStatus", + "description": "Defines the progress or completion of a discovery request.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "InProgress", + "description": "Discovery request is executing." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Failed", + "description": "Discovery request has failed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Completed", + "description": "Discovery request has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery request status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "discoveryServiceStatus", + "attributeDescription": "Deprecated property.", + "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 report.", + "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": "discoveryRequestStep", + "attributeType": { + "class": "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": "discoveryAnalysisStep", + "attributeDescription": "Deprecated property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "executionDate", + "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 that the analysis was run.", + "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 content of the report.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "discoveryAnalysisStep", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 current processing step of a running discovery service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "analysisParameters", + "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 parameters used to drive the analysis.", + "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": [ + "DiscoveredAnnotation", + "DiscoveryEngineReport", + "DiscoveryInvocationReport", + "AssetDiscoveryReport" + ], + "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" + ] + }, + "DesignModel": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "name": "DesignModel", + "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 curated collection of design model elements.", + "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": "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": "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.", + "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": "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": [ + "ConceptModel" + ], + "relationshipNames": [ + "DesignModelOwnership" + ], + "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" + ] + }, + "OpenMetadataRoot": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "description": "Common root for all open metadata entity types.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE" + }, + "inheritedAttributes": [], + "subTypeNames": [ + "Referenceable", + "IntegrationReport", + "SearchKeyword", + "Rating", + "TranslationDetail", + "DataField", + "InformalTag", + "Annotation", + "Like", + "AnnotationReview" + ], + "classificationNames": [ + "Memento", + "Anchors" + ], + "relationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedRelationshipNames": [], + "inheritedClassificationNames": [] + }, + "ServiceLevelObjective": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "22c4e433-1b87-4446-840a-03f83d2dc113", + "name": "ServiceLevelObjective", + "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": "The set of behavior related objectives that an asset or capability seeks to achieve.", + "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": "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" + ] + }, + "VirtualConnection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "82f9c664-e59d-484c-a8f3-17088c23a2f3", + "name": "VirtualConnection", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A connector for a virtual resource that needs to retrieve data from multiple places.", + "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": "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 + }, + { + "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": [ + "EmbeddedConnection" + ], + "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", + "EmbeddedConnection", + "ConnectionToAsset", + "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", + "ConnectionEndpoint", + "LineageMapping", + "LineageMapping", + "ValidValuesAssignment", + "Certification", + "ConsolidatedDuplicateLink", + "ConsolidatedDuplicateLink", + "ConnectionConnectorType", + "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" + ] + }, + "TabularColumn": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", + "name": "TabularColumn", + "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 column attribute for a table oriented 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": [ + "RelationalColumn", + "TabularFileColumn" + ], + "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" + ] + }, + "SuspectDuplicateAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f703a621-4078-4c07-ab22-e7c334b94235", + "name": "SuspectDuplicateAnnotation", + "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": "Annotation linking referenceables that are suspected of being 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": "duplicateAnchorGUIDs", + "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 unique identifiers for the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingPropertyNames", + "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 properties that are the same in the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingClassificationNames", + "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 classifications that are the same in the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingAttachmentGUIDs", + "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 attachments that are the same in the suspects.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "matchingRelationshipGUIDs", + "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 direct relationships that are the same in the suspects.", + "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": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "SchemaAttribute": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A schema element that nests another schema type in its parent.", + "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": "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 + } + ] + }, + "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": [ + "RelationalTable", + "EventSchemaAttribute", + "DisplayDataField", + "APIParameter", + "QueryDataField", + "DisplayDataContainer", + "GraphVertex", + "ObjectAttribute", + "QueryDataContainer", + "DocumentSchemaAttribute", + "TabularColumn", + "GraphEdge" + ], + "classificationNames": [ + "TypeEmbeddedAttribute" + ], + "relationshipNames": [ + "SchemaAttributeDefinition", + "NestedSchemaAttribute", + "NestedSchemaAttribute", + "AttributeForSchema", + "SchemaAttributeType" + ], + "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" + ] + }, + "GraphEdge": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", + "name": "GraphEdge", + "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" + ] + }, + "Threat": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "4ca51fdf-9b70-46b1-bdf6-8860429e78d8", + "name": "Threat", + "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": "A description of a specific threat.", + "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" + ] + }, + "EventType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "8bc88aba-d7e4-4334-957f-cfe8e8eadc32", + "name": "EventType", + "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 description of an event (message)", + "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" + ] + }, + "OperatingPlatform": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "name": "OperatingPlatform", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Characteristics of the operating system in use within a host.", + "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": "byteOrdering", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "e5612c3a-49bd-4148-8f67-cfdf145d5fd8", + "name": "Endianness", + "description": "Defines the sequential order in which bytes are arranged into larger numerical values when stored in memory or when transmitted over digital links.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BigEndian", + "description": "Bits or bytes order from the big end." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "LittleEndian", + "description": "Bits or bytes ordered from the little end." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Definition of the hardware byte ordering.", + "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 operating platform.", + "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 operating platform.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "operatingSystem", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 operating system running on this operating platform.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "endianness", + "attributeType": { + "class": "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": "byteOrdering", + "attributeDescription": "Deprecated attribute. Use the byteOrdering attribute instead.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "operatingSystemPatchLevel", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of patches applied to the operating system.", + "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": [ + "OperatingPlatformManifest", + "OperatingPlatformUse" + ], + "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" + ] + }, + "RelationalTableType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98", + "name": "RelationalTableType", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4", + "name": "ComplexSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A table type for a relational database.", + "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" + ] + }, + "DivergentValueAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b86cdded-1078-4e42-b6ba-a718c2c67f62", + "name": "DivergentValueAnnotation", + "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 the property values 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": "divergentPropertyNames", + "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" + ] + }, + "OpenDiscoveryService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "name": "OpenDiscoveryService", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "191d870c-26f4-4310-a021-b8ca8772719d", + "name": "GovernanceService", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A pluggable component for discovering properties about 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": [ + "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": [ + "OpenDiscoveryPipeline" + ], + "classificationNames": [], + "relationshipNames": [ + "DiscoveryInvocationReport" + ], + "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" + ] + }, + "SoftwareCapability": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "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 software capability such as an software service or engine.", + "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": "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 + } + ] + }, + "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": [ + "SoftwareServerCapability" + ], + "classificationNames": [ + "CloudService", + "ProcessingState" + ], + "relationshipNames": [ + "ServerAssetUse", + "SupportedSoftwareCapability" + ], + "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" + ] + }, + "Like": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "deaa5ca0-47a0-483d-b943-d91c76744e01", + "name": "Like", + "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": "Boolean type of rating expressing a favorable impression.", + "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": "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 + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "AttachedLike" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "StructSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "a13b409f-fd67-4506-8d94-14dfafd250a4", + "name": "StructSchemaType", + "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 that has a list of attributes, typically of different 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": [], + "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" + ] + }, + "GovernanceActionEngine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "5d74250a-57ca-4197-9475-8911f620a94e", + "name": "GovernanceActionEngine", + "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 collection of related governance services of the same type from the Governance Action Framework (GAF).", + "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", + "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" + ] + }, + "ITInfrastructure": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "c19746ac-b3ec-49ce-af4b-83348fc55e07", + "name": "Infrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Hardware and base software that supports an IT 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": "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": [ + "SoftwareServerPlatform", + "Network", + "SoftwareServer", + "Host" + ], + "classificationNames": [ + "StewardshipServer", + "Webserver", + "RepositoryProxy", + "ApplicationServer", + "DatabaseServer", + "ServerPurpose", + "MetadataServer", + "GovernanceDaemon", + "IntegrationServer" + ], + "relationshipNames": [ + "DeployedOn", + "ServerEndpoint", + "OperatingPlatformUse", + "SupportedSoftwareCapability" + ], + "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" + ] + }, + "APIOperation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Description of an API operation.", + "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": [ + "APIResponse", + "APIOperations", + "APIHeader", + "APIRequest" + ], + "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" + ] + }, + "Engine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "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 programmable engine for running automated processes.", + "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": "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": [ + "ReportingEngine", + "DataMovementEngine", + "WorkflowEngine", + "AnalyticsEngine", + "DataVirtualizationEngine" + ], + "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" + ] + }, + "SolutionOwner": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "e44d5019-37e5-4965-8b89-2bef412833bf", + "name": "SolutionOwner", + "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 an IT solution.", + "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" + ] + }, + "SolutionPort": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "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 external endpoint for a solution.", + "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 port.", + "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 port.", + "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 port.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "direction", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "4879c96e-26c7-48af-ba92-8277632be733", + "name": "SolutionPortDirection", + "description": "Defines the direction of flow of information through a solution port.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The direction of flow is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Output", + "description": "The process is producing information through this port." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Input", + "description": "The process is consuming information through this port." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "InOut", + "description": "The process has a call interface attached to this port." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "OutIn", + "description": "The process is issuing a call to an external API through this port." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another direction." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Which way is data flowing?", + "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": [ + "SolutionPortDelegation", + "SolutionPortDelegation", + "SolutionLinkingWire", + "SolutionLinkingWire", + "SolutionPortSchema", + "SolutionComponentPort" + ], + "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" + ] + }, + "KeyStoreCollection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "979d97dd-6782-4648-8e2a-8982994533e6", + "name": "KeyStoreCollection", + "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 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": "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" + ] + }, + "GovernanceResponsibility": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "89a76b24-deb8-45bf-9304-a578a610326f", + "name": "GovernanceResponsibility", + "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 a responsibility of a person, team or organization that supports 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": [ + "GovernanceResponsibilityAssignment" + ], + "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" + ] + }, + "TabularFileColumn": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "af6265e7-5f58-4a9c-9ae7-8d4284be62bd", + "name": "TabularFileColumn", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", + "name": "TabularColumn", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A column in a tabular file.", + "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" + ] + }, + "NoteEntry": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", + "name": "NoteEntry", + "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 entry in 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", + "propertiesDefinition": [ + { + "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 of the note entry.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "text", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Text of the note entry.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "isPublic", + "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 the note visible to more than the note log authors?", + "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": [ + "AttachedNoteLogEntry" + ], + "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" + ] + }, + "GovernancePrinciple": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3b7d1325-ec2c-44cb-8db0-ce207beb78cf", + "name": "GovernancePrinciple", + "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 principle related to how data is managed or used that the organization should ensure remains true.", + "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" + ] + }, + "ConceptBead": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "name": "ConceptBead", + "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 representation of a person, place or object.", + "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", + "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" + ] + }, + "Catalog": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f4fffcc0-d9eb-4bb9-8aff-0718932f689e", + "name": "Catalog", + "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 descriptions about people, places, digital assets, things, ...", + "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" + ] + }, + "DataSourceMeasurementAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c85bea73-d7af-46d7-8a7e-cb745910b1df", + "name": "DataSourceMeasurementAnnotation", + "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 summary set of measurements for 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": "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 + } + ] + }, + "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": [ + "DataSourcePhysicalStatusAnnotation" + ], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "PropertyFacet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6403a704-aad6-41c2-8e08-b9525c006f85", + "name": "PropertyFacet", + "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": "Additional properties that support a particular vendor or service.", + "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": "schemaVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property facet schema.", + "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 property facet contents.", + "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": "schemaVersion", + "attributeDescription": "Deprecated attribute. Use the schemaVersion attribute to define the version number of the property facet schema.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "properties", + "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 for the property facet.", + "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": [ + "ReferenceableFacet" + ], + "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" + ] + }, + "EngineHostingService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "90880f0b-c7a3-4d1d-93cc-0b877f27cd33", + "name": "EngineHostingService", + "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 services that delegate to a hosted engine.", + "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" + ] + }, + "ReferenceCodeTable": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "201f48c5-4e4b-41dc-9c5f-0bc9742190cf", + "name": "ReferenceCodeTable", + "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 code values and their translations.", + "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" + ] + }, + "TechnicalControl": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec", + "name": "TechnicalControl", + "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 technology.", + "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": [ + "SecurityGroup", + "GovernanceProcess", + "SecurityAccessControl", + "GovernanceRule", + "ServiceLevelObjective" + ], + "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" + ] + }, + "AnnotationReview": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "b893d6fc-642a-454b-beaf-809ee4dd876a", + "name": "AnnotationReview", + "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": "The results of a stewardship review of an annotation.", + "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": "reviewDate", + "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 of the review.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "Steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 identifier for the steward performing the review.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "comment", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes provided by the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ] + }, + "inheritedAttributes": [], + "subTypeNames": [], + "classificationNames": [], + "relationshipNames": [ + "AnnotationReviewLink" + ], + "inheritedRelationshipNames": [ + "RelatedIntegrationReport", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "MediaCollection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0075d603-1627-41c5-8cae-f5458d1247fe", + "name": "MediaCollection", + "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 group of related media files.", + "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": [ + "GroupedMedia" + ], + "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" + ] + }, + "Collection": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "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 related items.", + "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 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 + } + ] + }, + "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": [ + "NamingStandardRuleSet", + "EventSet", + "SoftwareArchive" + ], + "classificationNames": [ + "GovernanceDomainSet", + "Set", + "ConnectorTypeDirectory", + "Folder", + "IncidentClassifierSet", + "SoftwarePackageManifest", + "GovernanceClassificationSet", + "GovernanceStatusSet" + ], + "relationshipNames": [ + "CollectionMembership", + "OperatingPlatformManifest", + "SoftwarePackageDependency" + ], + "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" + ] + }, + "TabularSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "248975ec-8019-4b8a-9caf-084c8b724233", + "name": "TabularSchemaType", + "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 table oriented 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" + ] + }, + "GovernanceZone": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "290a192b-42a7-449a-935a-269ca62cfdac", + "name": "GovernanceZone", + "status": "ACTIVE_TYPEDEF", + "version": 5, + "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 assets that are suitable for a particular usage or are governed by a particular 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": "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 of this zone for user interfaces and reports.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "criteria", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 types of assets that belong in this zone.", + "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 zone to the assets matching the criteria.", + "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 zone.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "zoneName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 zone - 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": [], + "relationshipNames": [ + "ZoneHierarchy", + "ZoneHierarchy" + ], + "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" + ] + }, + "RelationalDBSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f20f5f45-1afb-41c1-9a09-34d8812626a4", + "name": "RelationalDBSchemaType", + "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 relational database.", + "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" + ] + }, + "DivergentDuplicateAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "251e443c-dee0-47fa-8a73-1a9d511915a0", + "name": "DivergentDuplicateAnnotation", + "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": "Annotation documenting differences in the values 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": "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 + } + ] + }, + "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": [ + "DivergentRelationshipAnnotation", + "DivergentClassificationAnnotation", + "DivergentValueAnnotation", + "DivergentAttachmentAnnotation" + ], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "GovernanceApproach": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67", + "name": "GovernanceApproach", + "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 preferred approach to managing or using data.", + "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" + ] + }, + "DivergentAttachmentAnnotation": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6", + "name": "DivergentAttachmentAnnotation", + "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 the attachments 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": "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 + } + ] + }, + "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": [ + "DivergentAttachmentClassificationAnnotation", + "DivergentAttachmentRelationshipAnnotation", + "DivergentAttachmentValueAnnotation" + ], + "classificationNames": [], + "relationshipNames": [], + "inheritedRelationshipNames": [ + "AnnotationReviewLink", + "AnnotationExtension", + "AnnotationExtension", + "RelatedIntegrationReport", + "DiscoveredAnnotation", + "TranslationLink", + "GovernanceActionRequestSource", + "ExternalIdLink", + "CatalogTarget" + ], + "inheritedClassificationNames": [ + "Memento", + "Anchors" + ] + }, + "ObjectSchemaType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6920fda1-7c07-47c7-84f1-9fb044ae153e", + "name": "ObjectSchemaType", + "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 attribute for an object.", + "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" + ] + }, + "TableDataSet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "20c45531-5d2e-4eb6-9a47-035cb1067b82", + "name": "TableDataSet", + "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 tabular data source (typically a database table) that is an asset in its own right.", + "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" + ] + }, + "GovernanceStrategy": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf", + "name": "GovernanceStrategy", + "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": "Defines how the governance program and the supporting capabilities are supporting the business strategy.", + "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": "businessImperatives", + "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": "Goals or required outcomes from the business strategy that is supported by the data strategy.", + "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": [], + "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" + ] + }, + "KubernetesCluster": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c", + "name": "KubernetesCluster", + "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 host cluster managing containerized applications.", + "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" + ] + }, + "GovernanceOfficer": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "578a3510-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceOfficer", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee", + "name": "GovernanceRole", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Person responsible for a governance domain.", + "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": "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" + ] + }, + "LicenseType": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", + "name": "LicenseType", + "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 type of license that sets out specific terms and conditions for the use of an asset.", + "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 rights, terms and conditions associated with the licence.", + "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": [ + "License" + ], + "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" + ] + }, + "ITProfile": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "81394f85-6008-465b-926e-b3fae4668937", + "name": "ITProfile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Descriptive details about a processing engine or other IT infrastructure.", + "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 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": [], + "classificationNames": [], + "relationshipNames": [ + "ITInfrastructureProfile" + ], + "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" + ] + }, + "GlossaryTerm": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "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 semantic description of something, such as a concept, object, asset, technology, role or group.", + "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 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 + } + ] + }, + "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": [ + "ControlledGlossaryTerm" + ], + "classificationNames": [ + "SpineAttribute", + "ContextDefinition", + "SpineObject", + "PrimaryCategory", + "ObjectIdentifier", + "DataValue", + "ActivityDescription", + "AbstractConcept", + "ElementSupplement" + ], + "relationshipNames": [ + "UsedInContext", + "ReplacementTerm", + "ReplacementTerm", + "TermTYPEDBYRelationship", + "TermTYPEDBYRelationship", + "Synonym", + "Synonym", + "IsATypeOfRelationship", + "IsATypeOfRelationship", + "RelatedTerm", + "RelatedTerm", + "LibraryTermReference", + "TermAnchor", + "Translation", + "Translation", + "PreferredTerm", + "PreferredTerm", + "ValidValue", + "ValidValue", + "TermCategorization", + "Antonym", + "Antonym", + "GlossaryTermEvolution", + "ISARelationship", + "ISARelationship", + "SemanticAssignment", + "TermHASARelationship", + "TermHASARelationship", + "SupplementaryProperties" + ], + "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" + ] + }, + "APIParameterList": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "ba167b12-969f-49d3-8bea-d04228d9a44b", + "name": "APIParameterList", + "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 list of parameters for an API.", + "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": "required", + "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 parameter list required when calling the API.", + "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", + "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" + ] + }, + "Topic": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "29100f49-338e-4361-b05d-7e4e8e818325", + "name": "Topic", + "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 location for storing and distributing related events.", + "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": "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 + } + ] + }, + "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": [ + "KafkaTopic" + ], + "classificationNames": [], + "relationshipNames": [ + "TopicSubscribers" + ], + "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" + ] + }, + "DeployedConnector": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "c9a183ab-67f4-46a4-8836-16fa041769b7", + "name": "DeployedConnector", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd", + "name": "DeployedSoftwareComponent", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A connector that is configured and deployed to run in a specific software server capability.", + "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": "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": [ + "IntegrationConnector", + "GovernanceService" + ], + "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", + "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" + ] + }, + "IncidentClassifier": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1fad7fe4-5115-412b-ae31-a418e93888fe", + "name": "IncidentClassifier", + "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 definition of a classifier used to label incident reports.", + "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": "classifierLabel", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Label to add to the incident.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classifierIdentifier", + "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": "Option for indicator value associated with the classifier label.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classifierName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 classifier identifier.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classifierDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 meaning of the classifier identifier.", + "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" + ] + }, + "Comment": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "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": "Descriptive feedback or discussion 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": "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": "commentType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "06d5032e-192a-4f77-ade1-a4b97926e867", + "name": "CommentType", + "description": "Descriptor for a comment that indicated its intent.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "GeneralComment", + "description": "General comment." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Question", + "description": "A question." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Answer", + "description": "An answer to a previously asked question." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Suggestion", + "description": "A suggestion for improvement." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Experience", + "description": "An account of an experience." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "None of the above." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of comment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "text", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Feedback comments or additional information.", + "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": "06d5032e-192a-4f77-ade1-a4b97926e867", + "name": "CommentType", + "description": "Descriptor for a comment that indicated its intent.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "GeneralComment", + "description": "General comment." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Question", + "description": "A question." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Answer", + "description": "An answer to a previously asked question." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Suggestion", + "description": "A suggestion for improvement." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Experience", + "description": "An account of an experience." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "None of the above." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "commentType", + "attributeDescription": "Deprecated attribute. Use the commentType attribute to describe the type of comment.", + "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": [ + "AttachedComment", + "AcceptedAnswer", + "AcceptedAnswer" + ], + "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" + ] + }, + "GovernanceEngine": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "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 related governance services of the same type.", + "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": [ + "RepositoryGovernanceEngine", + "OpenDiscoveryEngine", + "GovernanceActionEngine" + ], + "classificationNames": [], + "relationshipNames": [ + "GovernanceActionTypeExecutor", + "SupportedGovernanceService" + ], + "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" + ] + }, + "EventSet": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "bead9aa4-214a-4596-8036-aa78395bbfb1", + "name": "EventSet", + "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": "A collection of related event 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": "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" + ] + }, + "NamingStandardRule": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "52505b06-98a5-481f-8a32-db9b02afabfc", + "name": "NamingStandardRule", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "name": "GovernanceRule", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Describes a parsing rule used to create compliant names.", + "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": "namePattern", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 naming standard rule.", + "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": [], + "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", + "GovernanceRuleImplementation", + "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" + ] + }, + "ExternalId": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "name": "ExternalId", + "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": "Alternative identifier used in another system.", + "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": "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 used in an external system.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "keyPattern", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", + "name": "KeyPattern", + "description": "Defines the type of identifier used for an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "LocalKey", + "description": "Unique key allocated and used within the scope of a single system." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "RecycledKey", + "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "NaturalKey", + "description": "Key derived from an attribute of the entity, such as email address, passport number." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "MirrorKey", + "description": "Key value copied from another system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "AggregateKey", + "description": "Key formed by combining keys from multiple systems." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "CallersKey", + "description": "Key from another system can bey used if system name provided." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "StableKey", + "description": "Key value will remain active even if records are merged." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another key pattern." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Management pattern associated with the identifier.", + "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": [ + "ExternalIdScope", + "ExternalIdLink" + ], + "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" + ] + }, + "Host": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Named IT infrastructure system that supports multiple software servers.", + "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": [ + "BareMetalComputer", + "HostCluster", + "VirtualMachine", + "VirtualContainer" + ], + "classificationNames": [ + "CloudProvider" + ], + "relationshipNames": [ + "HostClusterMember", + "AttachedStorage" + ], + "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" + ] + }, + "InformationView": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "68d7b905-6438-43be-88cf-5de027b4aaaf", + "name": "InformationView", + "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 selected data items from one or more data stores or 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", + "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 view.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "comment", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Comment", + "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 entity.", + "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": "Information View 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": "Information View 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": "Information View 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" + ] + }, + "SubscriberList": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "69751093-35f9-42b1-944b-ba6251ff513d", + "name": "SubscriberList", + "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 a list of endpoints registered to receive events from a topic.", + "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": [ + "TopicSubscribers" + ], + "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" + ] + }, + "TeamMember": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "46db26d5-abb2-538b-bc15-d62d373c5db6", + "name": "TeamMember", + "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 assigned to a team.", + "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" + ] + }, + "SoftwareArchive": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa", + "name": "SoftwareArchive", + "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": "A collection of runnable software components.", + "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": "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" + ] + }, + "DataProcessingAction": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "7f53928f-9148-4710-ad37-47633f33cb08", + "name": "DataProcessingAction", + "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 processing on a single target item.", + "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": "Name of the processing 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": "Brief description of the processing 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": [ + "DataProcessingTarget", + "DetailedProcessingActions" + ], + "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" + ] + }, + "CommunityMember": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "fbd42379-f6c3-4f09-b6f7-378565cda993", + "name": "CommunityMember", + "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 who has joined a community.", + "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" + ] + }, + "OpenDiscoveryPipeline": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "081abe00-740e-4143-b0d5-a1f55450fc22", + "name": "OpenDiscoveryPipeline", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "name": "OpenDiscoveryService", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A pluggable component that calls multiple discovery services.", + "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" + }, + "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", + "DiscoveryInvocationReport", + "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" + ] + }, + "NoteLog": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "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 ordered list of related notes.", + "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 note log.", + "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 note log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "isPublic", + "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 the note log visible to more than the note log authors?", + "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": [ + "AttachedNoteLogEntry", + "AttachedNoteLog", + "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", + "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" + ] + }, + "ExternalGlossaryLink": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "ENTITY_DEF", + "superType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "description": "The location of a glossary stored outside of the open metadata ecosystem.", + "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": "pageRange", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "copyright", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Copyright statement associated with this external source.", + "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 to use when displaying reference in a list.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationNumbers", + "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", + "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 external source. For example, its significance and use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "edition", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 edition for this external source.", + "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": "referenceVersion", + "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceTitle", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publication title of the external source.", + "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": "Network address where this external source can be accessed from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceAbstract", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Summary of the key messages in the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeries", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 journal or series of publications that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationCity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "City where the publishers are based.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "license", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 license associated with this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "numberOfPages", + "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 pages that this external source has.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationSeriesVolume", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 volume in the publication series that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that this external source is from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 revision or version of the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attribution", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Attribution statement to use when consuming this external resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publisher", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 publisher responsible for producing this external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationYear", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Year when the publication of this version/edition of the external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "publicationDate", + "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 when this version/edition of this external source was published.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "authors", + "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 authors for the external source.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "firstPublicationDate", + "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 of the first published version/edition of this external source.", + "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": [ + "LibraryTermReference", + "LibraryCategoryReference", + "ExternallySourcedGlossary" + ], + "inheritedRelationshipNames": [ + "UsedInContext", + "AttachedComment", + "MoreInformation", + "MoreInformation", + "DigitalServiceOperator", + "ProcessCall", + "ProcessCall", + "PeerDuplicateLink", + "PeerDuplicateLink", + "RelatedIntegrationReport", + "SourcedFrom", + "SourcedFrom", + "TranslationLink", + "ExternalIdScope", + "DataFlow", + "DataFlow", + "CollectionMembership", + "ApprovedPurpose", + "ContractLink", + "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", + "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" + ] + }, + "DataClass": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "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 logical data type specification.", + "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": "Display name of the data class.", + "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 data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classCode", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 processing class that can identify the data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "userDefined", + "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": "Defined by owning organization rather than vendor.", + "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": "Logical group for this data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "specification", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Parsing string used to identify values of this data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "specificationDetails", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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": "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": "Typical data type used to store this value.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "defaultThreshold", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "52aeb769-37b7-4b30-b949-ddc7dcebcfa2", + "name": "float", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_FLOAT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Match threshold that a data field is expected to achieve to be assigned this data class.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "example", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Example of a data value that matches this data class.", + "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": [ + "DataClassComposition", + "DataClassComposition", + "DataClassHierarchy", + "DataClassHierarchy", + "DataClassAssignment" + ], + "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" + ] + }, + "GovernanceService": { + "entityDef": { + "class": "EntityDef", + "headerVersion": 1, + "guid": "191d870c-26f4-4310-a021-b8ca8772719d", + "name": "GovernanceService", + "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 connector that performs some governance operation.", + "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": "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": [ + "RepositoryGovernanceService", + "GovernanceActionService", + "OpenDiscoveryService" + ], + "classificationNames": [], + "relationshipNames": [ + "SupportedGovernanceService" + ], + "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" + ] + } + }, + "relationships": { + "UsedInContext": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2dc524d2-e29f-4186-9081-72ea956c75de", + "name": "UsedInContext", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms where on describes the context where the other one is valid to use.", + "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": "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contextRelevantTerms", + "attributeDescription": "Glossary terms used in this specific context.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInContexts", + "attributeDescription": "Elements describing the contexts where this term is used.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedComment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0d90501b-bf29-4621-a207-0c8c953bdac9", + "name": "AttachedComment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a comment to an item, or another comment.", + "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": "isPublic", + "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 the attached comment visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "commentAnchor", + "attributeDescription": "Element that this comment relates.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "comments", + "attributeDescription": "Accumulated comments.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessPort": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2", + "name": "ProcessPort", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a process and one of its ports.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "owningProcess", + "attributeDescription": "Process linked to the port", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "ports", + "attributeDescription": "Port to the process", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataFieldAnalysis": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "833e849d-eda2-40bb-9e6b-c3ca0b56d581", + "name": "DataFieldAnalysis", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Attached data field level annotations.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "name": "DataFieldAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataFieldAnnotations", + "attributeDescription": "The annotations for this data field.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "annotatedDataFields", + "attributeDescription": "Data fields with addition properties attached.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DeployedOn": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6932ba75-9522-4a06-a4a4-ee60a4df6aab", + "name": "DeployedOn", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies an IT Infrastructure asset that is deployed to a specific destination.", + "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": "deploymentTime", + "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": "Time that the IT Infrastructure was deployed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployer", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person, organization or engine that deployed the IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifying property name of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deploymentStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", + "name": "OperationalStatus", + "description": "Defines whether a component is operational.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Disabled", + "description": "The component is not operational." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Enabled", + "description": "The component is operational." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The operational status of the the IT Infrastructure on the specific destination.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedElement", + "attributeDescription": "IT infrastructure deployed to this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedTo", + "attributeDescription": "Deployment destination.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AnnotationReviewLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5d3c2fb7-fa04-4d77-83cb-fd9216a07769", + "name": "AnnotationReviewLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Review results for an annotation.", + "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": "annotationStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", + "name": "AnnotationStatus", + "description": "Defines the status of an annotation.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "New", + "description": "The annotation is new." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewed", + "description": "The annotation has been reviewed by a steward." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Approved", + "description": "The annotation has been approved." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Actioned", + "description": "The request has been actioned." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Invalid", + "description": "The annotation is invalid or incorrect." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Ignore", + "description": "The annotation should be ignored." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Status of the processing as a result of the annotation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "reviewedAnnotations", + "attributeDescription": "The annotations being reviewed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b893d6fc-642a-454b-beaf-809ee4dd876a", + "name": "AnnotationReview", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "annotationReviews", + "attributeDescription": "The feedback about the annotations.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectCharterLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f081808d-545a-41cb-a9aa-c4f074a16c78", + "name": "ProjectCharterLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a Project with its Charter.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projects", + "attributeDescription": "The projects guided by this charter.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f96b5a32-42c1-4a74-8f77-70a81cec783d", + "name": "ProjectCharter", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "charter", + "attributeDescription": "The charter guiding this project.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "DataClassComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "767fb343-4699-49c1-a0f8-af6da78505f8", + "name": "DataClassComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a data class to another in a part of hierarchy.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "partOfDataClasses", + "attributeDescription": "Data classes that includes other data classes in its definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "madeOfDataClasses", + "attributeDescription": "Data classes that provide part of another data class's definitions.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceDriverLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c5e6fada-2c12-46ee-afa9-b71dd1bd8179", + "name": "GovernanceDriverLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a two governance drivers.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkingDrivers", + "attributeDescription": "Governance driver that makes use of another governance driver's requirements.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedDrivers", + "attributeDescription": "Governance driver that defines requirements that support another governance driver.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PersonalContribution": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4a316abe-eeee-4d11-ad5a-4bfb4079b80b", + "name": "PersonalContribution", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a person's contribution record.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributor", + "attributeDescription": "The person behind the contribution.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28cccd285", + "name": "ContributionRecord", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributionRecord", + "attributeDescription": "The record of activity by this person.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "DataContentForDataSet": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b827683c-2924-4df3-a92d-7be1888e23c0", + "name": "DataContentForDataSet", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The assets that provides data for a data 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": "queryId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for placeholder in data set's formula.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "query", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 how the value(s) is/are retrieved.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "BOTH", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataContent", + "attributeDescription": "Assets supporting a data set.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedDataSets", + "attributeDescription": "Data sets that use this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RegisteredIntegrationConnector": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2", + "name": "RegisteredIntegrationConnector", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between an integration group and an integration connector that is part of the group.", + "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 connector for logging purposes.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "connectorUserId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for the integration connector to use when working with open metadata. The default userId comes from the hosting server if this value is blank.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "metadataSourceQualifiedName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of a software server capability that is the owner/home of the metadata catalogued by the integration connector.", + "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": "Earliest time that the connector can run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stopTime", + "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": "Latest time that the connector can run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "refreshTimeInterval", + "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": "Describes how frequently the integration connector should run - in minutes.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "permittedSynchronization", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", + "name": "PermittedSynchronization", + "description": "Defines the synchronization rules between a third party technology and open metadata.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BothDirections", + "description": "Metadata exchange is permitted in both directions." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "ToThirdParty", + "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "FromThirdParty", + "description": "The third party technology is logically upstream and is publishing metadata to open metadata." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another synchronization rule." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Defines the permitted directions of flow of metadata updates between open metadata and a third party technology.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "generateIntegrationReport", + "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": "Should the integration daemon create integration reports based on the integration connector's activity? (Default is true.)", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4d7c43ec-983b-40e4-af78-6fb66c4f5136", + "name": "IntegrationGroup", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "includedInIntegrationGroups", + "attributeDescription": "An integration group that this integration connector is a member of.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db", + "name": "IntegrationConnector", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "registeredIntegrationConnectors", + "attributeDescription": "An integration connector that should run as part of the integration group.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PortDelegation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E", + "name": "PortDelegation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A relationship between a more granular and a more abstract port", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "delegatingFrom", + "attributeDescription": "Higher level Port", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "delegatingTo", + "attributeDescription": "Lower level port", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "ServerEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2b8bfab4-8023-4611-9833-82a0dc95f187", + "name": "ServerEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines an endpoint associated with a 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "servers", + "attributeDescription": "Server(s) supporting this endpoint.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "endpoints", + "attributeDescription": "Endpoints supported by this server.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "MoreInformation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f", + "name": "MoreInformation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to indicate that a referenceable provides additional information about another referenceable.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describes", + "attributeDescription": "Describes this core element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "providesMoreInformation", + "attributeDescription": "Provides more information about this referenceable.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8f1134f6-b9fe-4971-bc57-6e1b8b302b55", + "name": "ProjectHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A nesting relationship between projects.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managingProject", + "attributeDescription": "Project that oversees this project.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managedProject", + "attributeDescription": "Project that this project is responsible for managing.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AnnotationExtension": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "605aaa6d-682e-405c-964b-ca6aaa94be1b", + "name": "AnnotationExtension", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Additional information to augment an annotation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "extendedAnnotations", + "attributeDescription": "The annotations being extended.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "annotationExtensions", + "attributeDescription": "The annotations providing additional information.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceOperator": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "79ac27f6-be9c-489f-a7c2-b9add0bf705c", + "name": "DigitalServiceOperator", + "status": "ACTIVE_TYPEDEF", + "version": 4, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the organizations responsible for operating the digital services.", + "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": "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": "The extent to which this operator is responsible for the digital service operations.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "operatesDigitalServices", + "attributeDescription": "The digital services that this team/organization operates.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalServiceOperators", + "attributeDescription": "The unit (team, capability, ...) responsible for managing this digital service.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessCall": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "af904501-6347-4f52-8378-da50e8d74828", + "name": "ProcessCall", + "status": "ACTIVE_TYPEDEF", + "version": 4, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows a request-response call between two elements.", + "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": "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": "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 name of the call relationship.", + "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 and purpose of the call.", + "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": "Function that determines the subset of the data that flows.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "lineNumber", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Location of the call in the implementation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "caller", + "attributeDescription": "Call originator.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "called", + "attributeDescription": "Called element that performs the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "APIResponse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e8001de2-1bb1-442b-a66f-9addc3641eae", + "name": "APIResponse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API operation and its response structure.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedAsAPIResponse", + "attributeDescription": "API operations using this structure as the response.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "apiResponse", + "attributeDescription": "Response structure for this API operation.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "PeerDuplicateLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a94b2929-9e62-4b12-98ab-8ac45691e5bd", + "name": "PeerDuplicateLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between detected duplicate entities.", + "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": "statusIdentifier", + "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": "Status of the duplicate processing. Value defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "Source of the duplicate detection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information for the steward(s) relating to the duplicate detection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerDuplicateOrigin", + "attributeDescription": "Oldest element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerDuplicatePartner", + "attributeDescription": "Newest element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelGroupMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2dcfe62b-341c-4c3d-b336-a94a52c20556", + "name": "DesignModelGroupMembership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a design model element to a group.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b144ee2a-fa71-4897-b51a-dd5239c26910", + "name": "DesignModelGroup", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfModelGroups", + "attributeDescription": "Link to a list of groups this element is a member of.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "elementsInGroup", + "attributeDescription": "List of elements that belong to this group.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedIntegrationReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "83d12156-f8f3-4b4b-b31b-18c140df9aa3", + "name": "RelatedIntegrationReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links an integration report to the anchor entity it describes.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "anchorSubject", + "attributeDescription": "The anchor entity that the integration report describes.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b8703d3f-8668-4e6a-bf26-27db1607220d", + "name": "IntegrationReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "integrationReports", + "attributeDescription": "A description of the changes made to the anchor entity by an integration report.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaAttributeDefinition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f1e263-e24d-4f20-8c0d-b5e21232cd54", + "name": "SchemaAttributeDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between data field analysis and the identified schema attribute definition.", + "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": "assetGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 analyzed asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedSchemaAttributes", + "attributeDescription": "The analysis of the equivalent data fields from deployed assets.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaAttributeDefinition", + "attributeDescription": "Official schema attribute definition.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "DerivedSchemaTypeQueryTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1c2622b7-ac21-413c-89e1-6f61f348cd19", + "name": "DerivedSchemaTypeQueryTarget", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Details of how a derived schema element is calculated.", + "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": "queryId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for placeholder in derived schema type's formula.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "query", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 how the value(s) is/are retrieved.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedBy", + "attributeDescription": "Use of another schema type to derive all or part of this schema type's value.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "queryTarget", + "attributeDescription": "Used to provide data values to the other schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveredAnnotation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "51d386a3-3857-42e3-a3df-14a6cad08b93", + "name": "DiscoveredAnnotation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The annotations that make up a discovery analysis report.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "name": "Annotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "reportedAnnotations", + "attributeDescription": "The annotations providing the contents for the report.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "fromAnalysisReport", + "attributeDescription": "The report that the annotations belong to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "MapToElementType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8b9856b3-451e-45fc-afc7-fddefd81a73a", + "name": "MapToElementType", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the type of value for a map schema type.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "name": "MapSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapTo", + "attributeDescription": "Used in map.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapTo", + "attributeDescription": "Used in map to describe the range (value mapped to).", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NestedSchemaAttribute": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0ffb9d87-7074-45da-a9b0-ae0859611133", + "name": "NestedSchemaAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The direct parent-child relationship between attributes with an embedded type.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentAttribute", + "attributeDescription": "Schema attribute containing this attribute.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedAttributes", + "attributeDescription": "The attributes defining the internal structure of the parent attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SourcedFrom": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "87b7371e-e311-460f-8849-08646d0d6ad3", + "name": "SourcedFrom", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines source of the information for a referenceable that was created by copying from a template.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resultingElement", + "attributeDescription": "Element created from the template.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "templateElement", + "attributeDescription": "Template element providing information.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "TranslationLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "576228af-33ec-4588-ba4e-6a864a097e10", + "name": "TranslationLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links an entity to a collection of translated properties.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translates", + "attributeDescription": "Entity that is translated.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d7df0579-8671-48f0-a8aa-38a487d418c8", + "name": "TranslationDetail", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translation", + "attributeDescription": "Translation of entity for a single language.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CommunityMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7c7da1a3-01b3-473e-972e-606eff0cb112", + "name": "CommunityMembership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Associates an actor profile with a community.", + "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": "relationshipType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b0ef45bf-d12b-4b6f-add6-59c14648d750", + "name": "CommunityMembershipType", + "description": "Type of membership to a community.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Contributor", + "description": "Participant in the community." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Administrator", + "description": "Administrator of the community." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Leader", + "description": "Leader of the community." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Observer", + "description": "Observer of the community." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role in the community." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of membership to the community.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fbd42379-f6c3-4f08-b6f7-378565cda993", + "name": "Community", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfCommunity", + "attributeDescription": "Communities that the person is a member of.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "communityMembers", + "attributeDescription": "Members of the community.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternalIdScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8c5b1415-2d1f-4190-ba6c-1fdd47f03269", + "name": "ExternalIdScope", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Places where an external identifier is recognized.", + "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": "permittedSynchronization", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", + "name": "PermittedSynchronization", + "description": "Defines the synchronization rules between a third party technology and open metadata.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BothDirections", + "description": "Metadata exchange is permitted in both directions." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "ToThirdParty", + "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "FromThirdParty", + "description": "The third party technology is logically upstream and is publishing metadata to open metadata." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another synchronization rule." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Defines the permitted directions of flow of metadata updates between open metadata and a third party technology.", + "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": "Additional description of the type of synchronization occurring.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "scopedTo", + "attributeDescription": "Identifies where this external identifier is known.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "name": "ExternalId", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managedResources", + "attributeDescription": "Link to details of a resource that this component manages.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedKeyword": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62", + "name": "RelatedKeyword", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links search keywords that have similar meanings together.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "name": "SearchKeyword", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedKeyword", + "attributeDescription": "Keyword with similar meaning or usage.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "name": "SearchKeyword", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedKeyword", + "attributeDescription": "Keyword with similar meaning or usage.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AcceptedAnswer": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ecf1a3ca-adc5-4747-82cf-10ec590c5c69", + "name": "AcceptedAnswer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a comment as answering a question asked in another comment.", + "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": "isPublic", + "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 the attached answer visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "answeredQuestions", + "attributeDescription": "Questions that now has an accepted answer.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", + "name": "Comment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "acceptedAnswers", + "attributeDescription": "Accumulated answers.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceDefinitionMetric": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e076fbb3-54f5-46b8-8f1e-a7cb7e792673", + "name": "GovernanceDefinitionMetric", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance definition and a governance metric used to measure this definition.", + "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": "rationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Documents reasons for using the metric to measure the governance definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e", + "name": "GovernanceMetric", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "metrics", + "attributeDescription": "The metrics that measure the landscape against this governance definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "measuredDefinitions", + "attributeDescription": "The governance definitions that are measured by this metric.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssetSchemaType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "815b004d-73c6-4728-9dd9-536f4fe803cd", + "name": "AssetSchemaType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describesAssets", + "attributeDescription": "Asset that conforms to the schema type.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schema", + "attributeDescription": "Structure of the content of this asset.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "TopicSubscribers": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e", + "name": "TopicSubscribers", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links the list of subscribers to a topic.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "69751093-35f9-42b1-944b-ba6251ff513d", + "name": "SubscriberList", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subscribers", + "attributeDescription": "The endpoints subscribed to this topic.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "29100f49-338e-4361-b05d-7e4e8e818325", + "name": "Topic", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "topics", + "attributeDescription": "The topics used by this subscriber list.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "OrganizationalCapability": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "47f0ad39-db77-41b0-b406-36b1598e0ba7", + "name": "OrganizationalCapability", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Describes the relationship between a team and the business capabilities it supports.", + "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": "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 in the organization.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", + "name": "BusinessCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportsBusinessCapabilities", + "attributeDescription": "The business capabilities that this team supports.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingTeams", + "attributeDescription": "The teams that support this business capability.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ReplacementTerm": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed", + "name": "ReplacementTerm", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to a glossary term that is replacing an obsolete glossary term.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "replacedTerms", + "attributeDescription": "Replaced glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "replacementTerms", + "attributeDescription": "Replacement glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataFlow": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d2490c0c-06cc-458a-add2-33cf2f5dd724", + "name": "DataFlow", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows that data flows in one direction from one element to another.", + "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": "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": "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 name of the flow relationship.", + "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 and purpose of the flow.", + "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": "Function that determines the subset of the data that flows.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataSupplier", + "attributeDescription": "Caller element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataConsumer", + "attributeDescription": "Called element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "MetadataCohortPeer": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "954cdba1-3d69-4db1-bf0e-d59fd2c25a27", + "name": "MetadataCohortPeer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A metadata repository's registration with an open metadata cohort.", + "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": "registrationDate", + "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 first registered with the cohort.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893", + "name": "MetadataRepositoryCohort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "registeredWithCohorts", + "attributeDescription": "Identifies which cohorts this cohort member is registered with.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "42063797-a78a-4720-9353-52026c75f667", + "name": "CohortMember", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "cohortMembership", + "attributeDescription": "Members of this cohort.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConceptBeadRelationshipEnd": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1a379e55-a4c0-4289-a1a4-b89d257611d1", + "name": "ConceptBeadRelationshipEnd", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links one end of a concept bead link relationship to 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", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "attributeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for the relationship end.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "decoration", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a97d9167-7dd6-4dea-a8cf-c73c57a0f470", + "name": "ConceptModelDecoration", + "description": "Describes the type of relationship end.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Aggregation", + "description": "The relationship links an independent concept bead to a collection concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Composition", + "description": "The relationship links a sub-part to a composite." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Extension", + "description": "The relationship links an extension to a base concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Usage and lifecycle for this connection between the concept bead and the link.", + "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": "Position of this relationship in the concept bead's list of relationships.", + "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": "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": "uniqueValues", + "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": "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": "navigable", + "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 it possible to follow the link in this direction.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "13defd95-6452-4398-8382-e47f1a271eff", + "name": "ConceptBeadLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relationships", + "attributeDescription": "The relationships that the concept bead can be a part of.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "name": "ConceptBead", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "endBeads", + "attributeDescription": "The concept beads that are linked via this relationship.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedNoteLogEntry": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "38edecc6-f385-4574-8144-524a44e3e712", + "name": "AttachedNoteLogEntry", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a note log and one of its note log entries.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "logs", + "attributeDescription": "Logs that this entry relates.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", + "name": "NoteEntry", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "entries", + "attributeDescription": "Accumulated notes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CollectionMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5cabb76a-e25b-4bb5-8b93-768bbac005af", + "name": "CollectionMembership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a member of a collection.", + "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": "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 describing the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "membershipRationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 member is used, or why it is useful in this collection.", + "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": "Person, organization or automated process that created the membership relationship.", + "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": "a3bdb2ac-c28e-4e5a-8ab7-76aa01038832", + "name": "MembershipStatus", + "description": "Defines the provenance and confidence that a member belongs in a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Discovered", + "description": "The membership was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Assigned", + "description": "The membership was proposed by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Imported", + "description": "The membership was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Validated", + "description": "The membership created by an automated process has been validated and approved by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Deprecated", + "description": "The membership should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "Obsolete", + "description": "The membership must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another membership status." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the membership relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "foundInCollections", + "attributeDescription": "Collections that link to this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "collectionMembers", + "attributeDescription": "Members of this collection.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ApprovedPurpose": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3", + "name": "ApprovedPurpose", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the proposes that processes/people have permission to process data for.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "approvedForPurposes", + "attributeDescription": "The people/processes that have permission to process data.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "name": "DataProcessingPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "approvedPurposes", + "attributeDescription": "The purposes (outcomes) that the people/processes have permission for.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ContractLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "33937ece-5ab6-4cd3-a348-b8196ffc3b4e", + "name": "ContractLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to the contract document.", + "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": "contractId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 for the contract used in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "contractLiaison", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 actor to contact with queries relating to the contract.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "contractLiaisonTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of actor element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "contractLiaisonPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the actor element used as the identifier.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreements", + "attributeDescription": "Agreements related to the contract.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contracts", + "attributeDescription": "Details of the contract documents.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TargetForAction": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "46ec49bf-af66-4575-aab7-06ce895120cd", + "name": "TargetForAction", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The element(s) that the governance action will work on.", + "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": "actionTargetName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 to identify the action target to the governance service that processes it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionMessage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Message to provide additional information on the results of acting on the target by the governance service or the reasons for any failures.", + "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/time that work stopped on this element for the linked governance action.", + "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/time that work started on this element for the linked governance action.", + "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": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", + "name": "GovernanceActionStatus", + "description": "Defines the current execution status of a governance action.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Requested", + "description": "The governance action has been created and is pending." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Approved", + "description": "The governance action is approved to run." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Waiting", + "description": "The governance action is waiting for its start time or the right conditions to run." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Activating", + "description": "The governance service for the governance action is being initialized in the governance engine." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "InProgress", + "description": "The governance engine is running the associated governance service for the governance action." + }, + { + "headerVersion": 1, + "ordinal": 10, + "value": "Actioned", + "description": "The governance service for the governance action has successfully completed processing." + }, + { + "headerVersion": 1, + "ordinal": 11, + "value": "Invalid", + "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." + }, + { + "headerVersion": 1, + "ordinal": 12, + "value": "Ignored", + "description": "The governance action has not been run because a different governance action was chosen." + }, + { + "headerVersion": 1, + "ordinal": 13, + "value": "Failed", + "description": "The governance service for the governance action failed to execute." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Undefined or unknown governance action status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the work on this element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "identifiedActions", + "attributeDescription": "Governance action that is acting on this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "actionTarget", + "attributeDescription": "Element(s) to work on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConnectorImplementationChoice": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "633648f3-c951-4ad7-b975-9fc04e0f3d2e", + "name": "ConnectorImplementationChoice", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relates a connector category for a specific type of technology with the connector types that support it.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e", + "name": "ConnectorCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectorCategories", + "attributeDescription": "The categories that a connector type belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", + "name": "ConnectorType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectorTypes", + "attributeDescription": "The connector types that support the technology described in the connector category.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectManagement": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ac63ac45-a4d0-4fba-b583-92859de77dd8", + "name": "ProjectManagement", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The link between a project and its project manager role.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projectsManaged", + "attributeDescription": "The projects that are being managed by this project manager.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projectManagers", + "attributeDescription": "The roles for managing this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Stakeholder": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "efd8a136-0aea-4668-b91a-30f947e38b82", + "name": "Stakeholder", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the Actor Profiles that commissioned work (such as a project or a community) or a capability, service or assets.", + "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": "stakeholderRole", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that describes the role that the stakeholders will play in the operation of the Referenceable.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "commissioned", + "attributeDescription": "Team, project, community, asset, service, ... that was commissioned by the stakeholders.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "commissionedBy", + "attributeDescription": "Profiles of actors or roles that are stakeholders.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceActionFlow": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0", + "name": "GovernanceActionFlow", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a governance process and its first action.", + "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": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 guard passed to the first governance service to run in this process.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4d3a2b8d-9e2e-4832-b338-21c74e45b238", + "name": "GovernanceActionProcess", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "triggeredFrom", + "attributeDescription": "Governance process that describes an action flow.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "firstAction", + "attributeDescription": "First governance action in a governance action process.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SolutionComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114", + "name": "SolutionComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship showing the nesting structure of solution components.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSolutionComponents", + "attributeDescription": "The solution components that embed this component.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedSolutionComponents", + "attributeDescription": "The sub-parts of this solution component.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "APIOperations": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "03737169-ceb5-45f0-84f0-21c5929945af", + "name": "APIOperations", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API and its operations.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8", + "name": "APISchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInAPI", + "attributeDescription": "API that this operation belongs to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "containsOperations", + "attributeDescription": "Operations for this API type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LinkedExternalSchemaType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "9a5d78c2-1716-4783-bfc6-c300a9e2d092", + "name": "LinkedExternalSchemaType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links to a reusable schema type that is external to this schema.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSchema", + "attributeDescription": "Connection point for a reusable schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalSchemaType", + "attributeDescription": "The schema type that is being reused in another schema.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "RelationshipAnnotation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "73510abd-49e6-4097-ba4b-23bd3ef15baa", + "name": "RelationshipAnnotation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Annotation relating two referenceables.", + "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": "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": "discoveryReportGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 discovery analysis report that this relationship belongs to.", + "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": "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": "annotationStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", + "name": "AnnotationStatus", + "description": "Defines the status of an annotation.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "New", + "description": "The annotation is new." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewed", + "description": "The annotation has been reviewed by a steward." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Approved", + "description": "The annotation has been approved." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Actioned", + "description": "The request has been actioned." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Invalid", + "description": "The annotation is invalid or incorrect." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Ignore", + "description": "The annotation should be ignored." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Status of the processing as a result of the 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 + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedFromObjectAnnotations", + "attributeDescription": "The referenceables linked from.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedToObjectAnnotations", + "attributeDescription": "The referenceables linked to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "AssociatedGroup": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e47a19d0-7e12-4cf7-9ad7-50856da7faa2", + "name": "AssociatedGroup", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a security access control to a security group.", + "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": "operationName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 operation to that is controlled by the linked security group.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f53bd594-5f75-4cf9-9f77-f5c35396590e", + "name": "SecurityAccessControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInAccessControls", + "attributeDescription": "An access control definition that uses the security group.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "042d9b5c-677e-477b-811f-1c39bf716759", + "name": "SecurityGroup", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedSecurityGroups", + "attributeDescription": "The security groups to use to validate access for the operation.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernancePolicyLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0c42c999-4cac-4da4-afab-0e381f3a818e", + "name": "GovernancePolicyLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links related governance policies together.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkingPolicies", + "attributeDescription": "Policies that are dependent on this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedPolicies", + "attributeDescription": "Policies that further define aspects of this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveredDataField": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f2d263-e24d-4f20-8c0d-b5e22222cd54", + "name": "DiscoveredDataField", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Data field detected in asset during schema analysis.", + "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": "dataFieldPosition", + "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 data field in the parent annotation's list of data fields.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", + "name": "SchemaAnalysisAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaAnalysisAnnotation", + "attributeDescription": "The annotation collecting the results of the schema analysis.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "discoveredDataFields", + "attributeDescription": "The data fields discovered during schema analysis.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PersonRoleAppointment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4a316abe-bcce-4d11-ad5a-4bfb4079b80b", + "name": "PersonRoleAppointment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a person's roles.", + "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": "isPublic", + "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 the appointment visible to more than the role owner and appointee?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "rolePerformers", + "attributeDescription": "A person performing this role.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "performsRoles", + "attributeDescription": "A role performed by this person.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermTYPEDBYRelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "669e8aa4-c671-4ee7-8d03-f37d09b9d006", + "name": "TermTYPEDBYRelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the relationship between a spine attribute and its 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": "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 relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributesTypedBy", + "attributeDescription": "Attributes of this type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "types", + "attributeDescription": "Types for this attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "MapFromElementType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6189d444-2da4-4cd7-9332-e48a1c340b44", + "name": "MapFromElementType", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the type of the key for a map schema type.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "name": "MapSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapFrom", + "attributeDescription": "Used in map.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentMapFrom", + "attributeDescription": "Used in map to describe the domain (value mapped from).", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ValidValueMember": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6337c9cd-8e5a-461b-97f9-5151bcb97a9e", + "name": "ValidValueMember", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links valid value set to the values.", + "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": "isDefaultValue", + "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 the member the default value in the set?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7de10805-7c44-40e3-a410-ffc51306801b", + "name": "ValidValuesSet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValuesSet", + "attributeDescription": "The valid values set that this element belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfValidValuesSet", + "attributeDescription": "Description of a single valid value.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaTypeDefinition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f2d263-e24d-4f20-8c0d-b5e24648cd54", + "name": "SchemaTypeDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between schema analysis annotation and the identified schema type definition.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", + "name": "SchemaAnalysisAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "deployedSchemaTypes", + "attributeDescription": "The analysis of the schema type for deployed assets.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaTypeDefinition", + "attributeDescription": "Official schema type definition.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "GovernanceResponsibilityAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "cb15c107-b7af-475d-aab0-d78b8297b982", + "name": "GovernanceResponsibilityAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a role that will perform a governance responsibility.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "performedByRoles", + "attributeDescription": "The roles assigned to this responsibility.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "89a76b24-deb8-45bf-9304-a578a610326f", + "name": "GovernanceResponsibility", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governanceResponsibilities", + "attributeDescription": "The responsibilities performed by this role.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Synonym": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "74f4094d-dba2-4ad9-874e-d422b69947e2", + "name": "Synonym", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms that have the same meaning.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "synonyms", + "attributeDescription": "Glossary terms with the same meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "synonyms", + "attributeDescription": "Glossary terms with the same meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaTypeOption": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "eb4f1f98-c649-4560-8a46-da17c02764a9", + "name": "SchemaTypeOption", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The list of alternative schema types.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", + "name": "SchemaTypeChoice", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaOptionalUses", + "attributeDescription": "Potential place where this schema type is used.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "schemaOptionalUses", + "attributeDescription": "Schema where this schema type is reused.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataProcessingSpecification": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1dfdec0f-f206-4db7-bac8-ec344205fb3c", + "name": "DataProcessingSpecification", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the processing being performed by processes or people.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingElements", + "attributeDescription": "The people/processes performing the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingDescriptions", + "attributeDescription": "The description of the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "EmbeddedConnection": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f", + "name": "EmbeddedConnection", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a virtual connection and one of the connections it depends on.", + "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": "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 for the embedded connection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "arguments", + "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": "Additional arguments needed by the virtual connector when using each connection.", + "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": "Position that embedded connection should be processed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "82f9c664-e59d-484c-a8f3-17088c23a2f3", + "name": "VirtualConnection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingVirtualConnections", + "attributeDescription": "Virtual connections using this connection.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "embeddedConnections", + "attributeDescription": "Connections embedded in this virtual connection.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConnectionToAsset": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e777d660-8dbe-453e-8b83-903771f054c0", + "name": "ConnectionToAsset", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a connection and the description of the asset it can be used to access.", + "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": "assetSummary", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that is retrieved through this connection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connections", + "attributeDescription": "Connections to this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "asset", + "attributeDescription": "Asset that can be accessed with this connection.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "RegulationCertificationType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "be12ff15-0721-4a7e-8c98-334eaa884bdf", + "name": "RegulationCertificationType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a certification required by a regulation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3c4293d-8846-4500-b0c0-197d73aba8b0", + "name": "Regulation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedRegulations", + "attributeDescription": "Regulations that require this type of certification.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea", + "name": "CertificationType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "requiredCertifications", + "attributeDescription": "The certifications required by this regulation.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceActionRequestSource": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5323a705-4c1f-456a-9741-41fdcb8e93ac", + "name": "GovernanceActionRequestSource", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance action type and the governance engine that will execute it.", + "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": "originGovernanceService", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 qualifiedName of the governance service that caused the governance action to be created.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "originGovernanceEngine", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 qualifiedName of the governance engine that caused the governance action to be created.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestSourceName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 to identify the request source to the governance service that processes it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceActivity", + "attributeDescription": "Element(s) that caused this governance action to be created.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "identifiedActions", + "attributeDescription": "Governance actions that were initiated for the linked element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceRuleImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e701a5c8-c1ba-4b75-8257-e0a6569eda48", + "name": "GovernanceRuleImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the implementation of a governance rule.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Documents reasons for implementing the rule using this implementation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "name": "GovernanceRule", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementsGovernanceRules", + "attributeDescription": "The rules that are implemented by this component.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd", + "name": "DeployedSoftwareComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "The software components that implement this governance rule.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "IsATypeOfRelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "9b6a91b5-a339-4245-b208-040805f95a75", + "name": "IsATypeOfRelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines an inheritance relationship between two spine objects.", + "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": "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 relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "Inherited", + "attributeDescription": "Inherited (Subtypes) for this object.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "InheritedFrom", + "attributeDescription": "Inherited from type (Supertypes) for this object.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ServerAssetUse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "56315447-88a6-4235-ba91-fead86524ebf", + "name": "ServerAssetUse", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines that a server capability is using an asset.", + "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": "minimumInstances", + "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 running asset instances controlled by the software server capability.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "maximumInstances", + "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 running asset instances controlled by the software server 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": "Additional information on how the asset is used by the software server capability.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "useType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "09439481-9489-467c-9ae5-178a6e0b6b5a", + "name": "ServerAssetUseType", + "description": "Defines how a software server capability may use an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Governs", + "description": "The software server capability provides management or oversight of the asset." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Maintains", + "description": "The software server capability keeps the asset up-to-date." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Uses", + "description": "The software server capability consumes the content of the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Describes how the software server capability uses the asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumedBy", + "attributeDescription": "Capability consuming this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumedAsset", + "attributeDescription": "Asset that this software capability is dependent on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaTypeImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "eed5565d-7ac2-46fe-9a26-4722fad8d993", + "name": "SchemaTypeImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a schema type and an implementation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementationSchemaTypes", + "attributeDescription": "Logical structure for the data.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "Concrete implementation of the schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedTerm": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b1161696-e563-4cf9-9fd9-c0c76e47d063", + "name": "RelatedTerm", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between similar 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": "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "seeAlso", + "attributeDescription": "Related glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "seeAlso", + "attributeDescription": "Related glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceActionTypeExecutor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f672245f-35b5-4ca7-b645-014cf61d5b75", + "name": "GovernanceActionTypeExecutor", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance action type and the governance engine that will execute it.", + "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": "requestParameterFilter", + "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": "Which requestParameters to remove before calling governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionTargetFilter", + "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": "Which actionTargets to remove before calling governance action.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 request type used to call the service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionTargetMap", + "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 action target to rename before calling the governance action. Map is from old name to new name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameters", + "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 configure the governance service for this type of request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameterMap", + "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 request parameters to rename before calling the governance action. Map is from old name to new name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportsGovernanceActionTypes", + "attributeDescription": "Governance action type that drives a governance engine.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governanceActionTypeExecutor", + "attributeDescription": "Governance engine that will run the governance action.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "APIHeader": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6", + "name": "APIHeader", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API operation and its header.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedAsAPIHeader", + "attributeDescription": "API operations using this structure as the header.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "apiHeader", + "attributeDescription": "Header structure for this API operation.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LibraryTermReference": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "38c346e4-ddd2-42ef-b4aa-55d53c078d22", + "name": "LibraryTermReference", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary term to a glossary term in an external glossary.", + "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": "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 corresponding element from the external glossary.", + "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 corresponding element from the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person who established the link to the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "lastVerified", + "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 when this reference was last checked.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localTerms", + "attributeDescription": "Related local glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalGlossaryTerms", + "attributeDescription": "Links to related external glossaries.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ImplementedBy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "28f63c94-aaef-4c84-98f7-d77aa605272e", + "name": "ImplementedBy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a step in the refinement of digital components and artifacts from design to concrete implementation.", + "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": "designStep", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Process that created the refinement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "role", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Role that this artifact plays in implementing the abstract representation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "transformation", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Transformation process used to create the refinement.", + "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 implementation in the context of the abstract representation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "derivedFrom", + "attributeDescription": "Abstract representation.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementedBy", + "attributeDescription": "Resulting refined element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceProcessImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4", + "name": "GovernanceProcessImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the implementation of a governance process.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Documents reasons for implementing the process using this implementation.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea", + "name": "GovernanceProcess", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementsGovernanceProcesses", + "attributeDescription": "The processes that are implemented by this component.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "The processes that implement this governance process.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "OperatingPlatformManifest": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e5bd6acf-932c-4d9c-85ff-941a8e4451db", + "name": "OperatingPlatformManifest", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the base software installed on the operating platform.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "name": "OperatingPlatform", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "packagedInOperatingPlatforms", + "attributeDescription": "The operating platforms that use this collection of software packages.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "includesSoftwarePackages", + "attributeDescription": "The collection of software packages that are included in the operating platform.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "ITInfrastructureProfile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4c579e3d-a4ff-41c1-9931-33e6fc992f2b", + "name": "ITInfrastructureProfile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an ITProfile and the asset for the piece of infrastructure it describes.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describedByProfile", + "attributeDescription": "The IT infrastructure that is described by the IT profile.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "81394f85-6008-465b-926e-b3fae4668937", + "name": "ITProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedByAsset", + "attributeDescription": "Description of the user identifies used by the asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GroupedMedia": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7d881574-461d-475c-ab44-077451528cb8", + "name": "GroupedMedia", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a media file into a data set.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0075d603-1627-41c5-8cae-f5458d1247fe", + "name": "MediaCollection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataSetMembership", + "attributeDescription": "Identifies the data sets this media file belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "name": "MediaFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataSetMembers", + "attributeDescription": "Media files that make up this media collection.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NestedFile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4cb88900-1446-4eb6-acea-29cd9da45e63", + "name": "NestedFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The link between a data file and its containing folder.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "homeFolder", + "attributeDescription": "Identifies the containing folder of this datafile.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedFiles", + "attributeDescription": "Files stored in this folder.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermAnchor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1d43d661-bdc7-4a91-a996-3239b8f82e56", + "name": "TermAnchor", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a term to its owning glossary.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "anchor", + "attributeDescription": "Owning glossary.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "terms", + "attributeDescription": "Terms owned by this glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ForeignKey": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07", + "name": "ForeignKey", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The primary key for another column is stored in a relational column from another table to enable them to be joined.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "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 foreign key.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "name": "RelationalColumn", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "primaryKey", + "attributeDescription": "Relational column holding the primary key.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "name": "RelationalColumn", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "foreignKey", + "attributeDescription": "Use of primary key from another table to enable table joins.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveryEngineReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2c318c3a-5dc2-42cd-a933-0087d852f67f", + "name": "DiscoveryEngineReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A discovery analysis report created by a discovery engine.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "be650674-790b-487a-a619-0a9002488055", + "name": "OpenDiscoveryEngine", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceDiscoveryEngine", + "attributeDescription": "The discovery engine that produced the report.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "discoveryEngineAnalysisReports", + "attributeDescription": "The reports produced by this discovery engine.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "APIRequest": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4ab3b466-31bd-48ea-8aa2-75623476f2e2", + "name": "APIRequest", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an API operation and its request structure.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "name": "APIOperation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedAsAPIRequest", + "attributeDescription": "API operations using this structure as the request body.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "apiRequest", + "attributeDescription": "Request structure for this API operation.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "CohortMemberMetadataCollection": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8b9dd3ea-057b-4709-9b42-f16098523907", + "name": "CohortMemberMetadataCollection", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The local metadata collection associated with a cohort peer.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "42063797-a78a-4720-9353-52026c75f667", + "name": "CohortMember", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "cohortMember", + "attributeDescription": "Cohort registry representing this metadata collection on the metadata highway.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976", + "name": "MetadataCollection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localMetadataCollection", + "attributeDescription": "Metadata to exchange with the cohorts.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "ReferenceableFacet": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "58c87647-ada9-4c90-a3c3-a40ace46b1f7", + "name": "ReferenceableFacet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a property facet and the resource it relates to.", + "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": "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": "Source of this property facet.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedEntity", + "attributeDescription": "Identifies which element this property facet belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6403a704-aad6-41c2-8e08-b9525c006f85", + "name": "PropertyFacet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "facets", + "attributeDescription": "Additional properties from different sources.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "RelatedDesignPattern": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6447c9cd-8e5a-461b-97f9-5151bcb97a9e", + "name": "RelatedDesignPattern", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links design patterns together.", + "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": "Definition of the relationship between the two design patterns.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6b60a73e-47bc-4096-9073-f94cab975958", + "name": "DesignPattern", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedDesignPattern", + "attributeDescription": "Another design pattern that operates in similar contexts.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6b60a73e-47bc-4096-9073-f94cab975958", + "name": "DesignPattern", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedDesignPattern", + "attributeDescription": "Another design pattern that operates in similar contexts.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e8303911-ba1c-4640-974e-c4d57ee1b310", + "name": "DigitalServiceDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying dependencies between digital services.", + "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": "delegationEscalationAuthority", + "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": "Can delegations and escalations flow on this relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "callsDigitalServices", + "attributeDescription": "The digital services dependent on the others.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "calledByDigitalServices", + "attributeDescription": "The digital services that the others depends on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NextGovernanceActionType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d9567840-9904-43a5-990b-4585c0446e00", + "name": "NextGovernanceActionType", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance actions in a governance action flow.", + "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": "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": "DEPRECATED_ATTRIBUTE", + "attributeDescription": "Trigger one or many next action instances? (deprecated)", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 guard that is returned by the previous action that means this next action will run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mandatoryGuard", + "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 guard mandatory for the next action to run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependedOnActionTypes", + "attributeDescription": "Governance Action Type caller.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "92e20083-0393-40c0-a95b-090724a91ddc", + "name": "GovernanceActionType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "followOnActionTypes", + "attributeDescription": "Governance Action Type called.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ContactThrough": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6cb9af43-184e-4dfa-854a-1572bcf0fe75", + "name": "ContactThrough", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The contact details associated with an actor profile.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contactDetails", + "attributeDescription": "Contact details owner.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "79296df8-645a-4ef7-a011-912d1cdcf75a", + "name": "ContactDetails", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contacts", + "attributeDescription": "Contact information.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "License": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "35e53b7f-2312-4d66-ae90-2d4cb47901ee", + "name": "License", + "status": "ACTIVE_TYPEDEF", + "version": 4, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an asset and its license.", + "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": "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes about the license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodian", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person, engine or organization tht will ensure the license is honored.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licensee", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person or organization that holds the license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "start", + "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 for the license.", + "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": "licensedByPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the licensedBy property.", + "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": "licensedBy", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person or organization that owns the intellectual property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licensedByTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the licensedBy property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licenseePropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the licensee property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licenseGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 actual license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "licenseeTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the licensee property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "end", + "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": "End date for the license.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "conditions", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Any special conditions or endorsements over the basic license type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "licensed", + "attributeDescription": "Items licensed by this type of license.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", + "name": "LicenseType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "licenses", + "attributeDescription": "The types of licenses that apply.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "FolderHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "48ac9028-45dd-495d-b3e1-622685b54a01", + "name": "FolderHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A nested relationship between two file folders.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentFolder", + "attributeDescription": "Parent folder.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedFolder", + "attributeDescription": "Folders embedded in this folder.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "HostClusterMember": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1a1c3933-a583-4b0c-9e42-c3691296a8e0", + "name": "HostClusterMember", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a host as a member of a host cluster.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890", + "name": "HostCluster", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "hostCluster", + "attributeDescription": "Cluster managing this host.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managedHosts", + "attributeDescription": "Member of the host cluster.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LibraryCategoryReference": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3da21cc9-3cdc-4d87-89b5-c501740f00b2", + "name": "LibraryCategoryReference", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary category to a corresponding category in an external glossary.", + "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": "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 corresponding element from the external glossary.", + "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 corresponding element from the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person who established the link to the external glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "lastVerified", + "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 when this reference was last checked.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localCategories", + "attributeDescription": "Related local glossary categories.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalGlossaryCategories", + "attributeDescription": "Links to related external glossaries.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ZoneHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139", + "name": "ZoneHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Creates a controlling hierarchy for governance zones.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "290a192b-42a7-449a-935a-269ca62cfdac", + "name": "GovernanceZone", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "inheritsFromZone", + "attributeDescription": "The zone that provides additional governance requirements.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "290a192b-42a7-449a-935a-269ca62cfdac", + "name": "GovernanceZone", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "controlsZone", + "attributeDescription": "The zones that are also governed in the same way.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "OperatingPlatformUse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0943e0ba-73ac-476b-8ebe-2ef30ba44976", + "name": "OperatingPlatformUse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the operating platform installed on the IT Infrastructure asset.", + "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": "installTime", + "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": "Time that the software was installed on the IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployer", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person, organization or engine that installed the software.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifying property name of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "name": "OperatingPlatform", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "operatingPlatforms", + "attributeDescription": "Software installed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "installedOn", + "attributeDescription": "Where the operating platform is running.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceProduct": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "51465a59-c785-406d-929c-def34596e9af", + "name": "DigitalServiceProduct", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A digital product that is maintained by a digital service.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managingDigitalService", + "attributeDescription": "Digital service responsible for the production of the digital product.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalProducts", + "attributeDescription": "The associated digital products.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConceptBeadAttributeLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5bad1df2-664b-407b-8036-2855e2ede92f", + "name": "ConceptBeadAttributeLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a concept bead to its attributes.", + "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": "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": "Position of this relationship in the concept bead's list of relationships.", + "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": "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": "uniqueValues", + "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": "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": "navigable", + "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 it possible to follow the link in this direction.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "name": "ConceptBead", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentBead", + "attributeDescription": "Concept bead that this attribute belongs to.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea", + "name": "ConceptBeadAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributes", + "attributeDescription": "Attribute detail for the concept bead.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedStorage": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2cf1e949-7189-4bf2-8ee4-e1318e59abd7", + "name": "AttachedStorage", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a host to a persistent storage volume.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "hosts", + "attributeDescription": "The hosts that are accessing the storage.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "14145458-f0d0-4955-8899-b8a2874708c9", + "name": "StorageVolume", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "storageVolumes", + "attributeDescription": "The storage available to a host.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProfileIdentity": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "01664609-e777-4079-b543-6baffe910ff1", + "name": "ProfileIdentity", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Correlates a user identity with an actor profile.", + "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": "roleTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 name of the PersonRole that the UserIdentity is used for.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "roleGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 unique identifier of the specific PersonRole that the UserIdentity is used for.", + "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": "A human readable description of the use of the UserIdentity by the actor.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "profile", + "attributeDescription": "Description of the person, organization or engine that uses this user identity.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", + "name": "UserIdentity", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "userIdentities", + "attributeDescription": "Authentication identifiers in use by the owner of this profile.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ToDoSource": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646", + "name": "ToDoSource", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The source of the to do, such as a person, meeting or a governance action.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "actionSource", + "attributeDescription": "Source of the to do request.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "name": "ToDo", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "actions", + "attributeDescription": "Requests to perform actions related to this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionPortDelegation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8335e6ed-fd86-4000-9bc5-5203062f28ba", + "name": "SolutionPortDelegation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Aligns ports from nested components with the parent's.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "alignsToPort", + "attributeDescription": "Encapsulating solution component's port", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "delegationPorts", + "attributeDescription": "Ports from nested components that align with the port from the encapsulating solution component.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Translation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6ae42e95-efc5-4256-bfa8-801140a29d2a", + "name": "Translation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms that provide different natural language translation of the same concept.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translations", + "attributeDescription": "Translations of glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "translations", + "attributeDescription": "Translations of glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataProcessingTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a", + "name": "DataProcessingTarget", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the actions being performed on data.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7f53928f-9148-4710-ad37-47633f33cb08", + "name": "DataProcessingAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingActions", + "attributeDescription": "Actions being performed on the data.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingTarget", + "attributeDescription": "The data that is being acted upon.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SubjectAreaHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b", + "name": "SubjectAreaHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Creates a controlling hierarchy for subject areas.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72", + "name": "SubjectAreaDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "broaderSubjectArea", + "attributeDescription": "The subject area that describes a broader topic.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72", + "name": "SubjectAreaDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedSubjectArea", + "attributeDescription": "The subdivisions of the broader topic.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DiscoveredNestedDataField": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "60f2d263-e24d-4f20-8c0d-b5e12356cd54", + "name": "DiscoveredNestedDataField", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Nested data fields under a single parent node.", + "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": "dataFieldPosition", + "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": "Positional order of the data field with its parent data field.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentDataField", + "attributeDescription": "Parent node.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "name": "DataField", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedDataFields", + "attributeDescription": "Nested data fields.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ReferenceValueAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "111e6d2e-94e9-43ed-b4ed-f0d220668cbf", + "name": "ReferenceValueAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Enables valid values to be used as tags to help group and locate referenceables.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes on the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 between 0 and 100 indicating the confidence that the match is correct.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attributeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 attribute that the reference data assignment represents.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedItem", + "attributeDescription": "An element that has been tagged by a valid value.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "referenceValue", + "attributeDescription": "A valid value that represents the meaning or classification of the assigned item.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Actions": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "aca1277b-bf1c-42f5-9b3b-fbc2c9047325", + "name": "Actions", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An action to change or support a specific rule, project, deliverable, situation or plan of action.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "toDoCause", + "attributeDescription": "Rule or meeting that is driving the need for the to do.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "name": "ToDo", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedActions", + "attributeDescription": "Potentially impacting requests for change.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TeamMembership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "name": "TeamMembership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the members of teams.", + "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": "position", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of membership position, if any.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "teamMembers", + "attributeDescription": "The members of the team.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "memberOfTeam", + "attributeDescription": "The team that this role is a member of.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SoftwarePackageDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2c05beaf-e313-47f8-ac18-2298140b2ad9", + "name": "SoftwarePackageDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows the software packages being used within an asset.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "runningWithAsset", + "attributeDescription": "Assets making use of software package.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependsOnSoftwarePackages", + "attributeDescription": "Collection of software packages.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TeamLeadership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "name": "TeamLeadership", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the leaders of teams.", + "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": "position", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of leadership position, eg deputy.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "teamLeaders", + "attributeDescription": "The leaders of the team.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "leadsTeam", + "attributeDescription": "The team lead by this person role.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionLinkingWire": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "892a3d1c-cfb8-431d-bd59-c4d38833bfb0", + "name": "SolutionLinkingWire", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Connection between two solution ports that shows how data flows.", + "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": "informationSupplyChainSegmentGUIDs", + "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": "Unique identifier of information supply chain segments that this wire belongs to (typically only one).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectedPorts", + "attributeDescription": "Port that the wire connects to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectedPorts", + "attributeDescription": "Port that the wire connects to.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ControlFlow": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "35450726-1c32-4d41-b928-22db6d1ae2f4", + "name": "ControlFlow", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows that when one element completes processing, control passes to the next element.", + "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": "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 name of the control flow relationship.", + "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 and purpose of the control flow.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Function that must be true to travel down this control flow.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "currentStep", + "attributeDescription": "Element that executes first.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nextStep", + "attributeDescription": "Element that executes next.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "DiscoveryInvocationReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1744d72b-903d-4273-9229-de20372a17e2", + "name": "DiscoveryInvocationReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An analysis report from a discovery service.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "name": "OpenDiscoveryService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceDiscoveryService", + "attributeDescription": "The discovery service that produced the report.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "serviceDiscoveryAnalysisReports", + "attributeDescription": "The reports produced by this discovery service.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionPortSchema": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bf02c703-57a2-4ab7-b6db-f49b57b05985", + "name": "SolutionPortSchema", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies the structure of data passed through a solution port.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describesSolutionPortData", + "attributeDescription": "Port that uses the schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "solutionPortSchema", + "attributeDescription": "Structure of the solution port's data.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "AssociatedSnippet": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6f89c320-22aa-4d99-9a97-442e8d214655", + "name": "AssociatedSnippet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an element such as a schema type or data class and an implementation snippet.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "snippetRelevantForElements", + "attributeDescription": "Element describing logical structure for data element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "49990755-2faa-4a62-a1f3-9124b9c73df4", + "name": "ImplementationSnippet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementationSnippetsForElement", + "attributeDescription": "Template implementation of the element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternalIdLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "28ab0381-c662-4b6d-b787-5d77208de126", + "name": "ExternalIdLink", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an external identifier and an asset or related 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": "lastSynchronized", + "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": "Timestamp documenting the last time the metadata in the external metadata source was synchronized with open metadata element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mappingProperties", + "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 to aid the mapping to the the element in an external metadata source.", + "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 the external identifier can be used.", + "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 how the external identifier relates to the resource.", + "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": "Details of where the external identifier was sourced from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resources", + "attributeDescription": "Resource being identified.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "name": "ExternalId", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "alsoKnownAs", + "attributeDescription": "Identifier used in an external system.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ResourceList": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "73cf5658-6a73-4ebc-8f4d-44fdfac0b437", + "name": "ResourceList", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links supporting resources to a referenceable (typically an Actor Profile, Governance Domain, Project, Meeting or Community).", + "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": "resourceUse", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 resource is used, or why it is useful.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "watchResource", + "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": "Indicator whether the anchor should receive notifications of changes to the resource.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resourceListAnchors", + "attributeDescription": "Referenceable objects that are using the linked to resource.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingResources", + "attributeDescription": "Resources identified as of interest to the anchor.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CategoryHierarchyLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "71e4b6fb-3412-4193-aff3-a16eccd87e8e", + "name": "CategoryHierarchyLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship between two glossary categories used to create nested categories.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "superCategory", + "attributeDescription": "Identifies the parent category.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subcategories", + "attributeDescription": "Glossary categories nested inside this category.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PreferredTerm": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a", + "name": "PreferredTerm", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to an alternative term that the organization prefer is used.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "alternateTerms", + "attributeDescription": "Alternative glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "preferredTerms", + "attributeDescription": "Related glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionBlueprintComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f1ae975f-f11a-467b-8c7a-b023081e4712", + "name": "SolutionBlueprintComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a solution blueprint and a solution component.", + "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": "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 component's role in the solution.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", + "name": "SolutionBlueprint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSolutionBlueprints", + "attributeDescription": "The solutions where this component features.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "containsSolutionComponents", + "attributeDescription": "List of solution components that make up the solution.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataClassHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "6b947ccc-1a70-4785-9ca3-d6326bc51291", + "name": "DataClassHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a data class to another in a parent child hierarchy.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "superDataClass", + "attributeDescription": "Data class that is the more abstract.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subDataClasses", + "attributeDescription": "Data classes that are more concrete.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c5cb1362-07f6-486b-b80b-ba7922cacee9", + "name": "DesignModelImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a concept model to an implementation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementationFollowingModel", + "attributeDescription": "Definition of an implementation of the model.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "modelDescribingBehavior", + "attributeDescription": "Descriptive abstraction.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceResults": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "89c3c695-9e8d-4660-9f44-ed971fd55f88", + "name": "GovernanceResults", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance metric and a data set used to gather measurements from the landscape.", + "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": "query", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Defines how the data items from the data set are converted in measurements for the metric.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e", + "name": "GovernanceMetric", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "metrics", + "attributeDescription": "The governance metrics that are captured in this data set.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "measurements", + "attributeDescription": "The data set that captures the measurements for this governance metric.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelElementsInScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4ff6d91b-3836-4ba2-9ca9-87da91081faa", + "name": "DesignModelElementsInScope", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a model to an implementation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "788957f7-a203-45bd-994d-0ab018275821", + "name": "DesignModelScope", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInScope", + "attributeDescription": "Link to a scope where this element is used.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "inScopeModelElements", + "attributeDescription": "List of elements that belong to this scope.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttributeForSchema": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "86b176a2-015c-44a6-8106-54d5d69ba661", + "name": "AttributeForSchema", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a complex schema type and its attributes.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4", + "name": "ComplexSchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentSchemas", + "attributeDescription": "Schema types using this attribute.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributes", + "attributeDescription": "The attributes defining the internal structure of the schema type.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssetLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1", + "name": "AssetLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Location 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "knownLocations", + "attributeDescription": "Places where this asset is sited.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localAssets", + "attributeDescription": "Assets sited at this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "IncidentDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "017be6a8-0037-49d8-af5d-c45c41f25e0b", + "name": "IncidentDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an incident report and its predecessors.", + "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": "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 dependency.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "priorReportedIncidents", + "attributeDescription": "Previous reports on the same or related incident.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "followOnReportedIncidents", + "attributeDescription": "Subsequent reports on the same or related incident.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SchemaAttributeType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2d955049-e59b-45dd-8e62-cde1add59f9e", + "name": "SchemaAttributeType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The schema type for an attribute.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usedInSchemas", + "attributeDescription": "Occurrences of this schema type in other schemas.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "type", + "attributeDescription": "The structure of this attribute.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "GovernanceImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "787eaf46-7cf2-4096-8d6e-671a0819d57e", + "name": "GovernanceImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a governance control and the governance driver it is implementing.", + "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": "rationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 reasons for implementing the policy using this control.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "policies", + "attributeDescription": "The policies that are supported by this control.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "name": "GovernanceControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "implementations", + "attributeDescription": "The governance controls that implement this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LinkedMedia": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "cee3a190-fc8d-4e53-908a-f1b9689581e0", + "name": "LinkedMedia", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a media file to another media file and describes relationship.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "name": "MediaFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedMediaFiles", + "attributeDescription": "Link to related media files.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "name": "MediaFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedMediaFiles", + "attributeDescription": "Link to related media files.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssignmentScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e3fdafe3-692a-46c6-a595-c538cc189dd9", + "name": "AssignmentScope", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a profile, role or project to the elements that they are responsible for managing.", + "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": "assignmentType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 is the scope or nature of the assignment.", + "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": "Further clarification on the assignment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedActors", + "attributeDescription": "Person, team, project or other type of actor that has been assigned.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedScope", + "attributeDescription": "Elements describing the resources or action the the actors are responsible for.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ValidValuesImplementation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d9a39553-6a47-4477-a217-844300c07cf2", + "name": "ValidValuesImplementation", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to an asset that implements the list of valid values.", + "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": "symbolicName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 value value used in code.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "implementationValue", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Value in the asset that maps to this valid value if different from the preferred value.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "additionalValues", + "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 values for additional columns or fields in the reference data store.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValues", + "attributeDescription": "The valid values set that this element implements.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValuesImplementation", + "attributeDescription": "The asset where the valid values are implemented.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "AssociatedLog": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0999e2b9-45d6-42c4-9767-4b74b0b48b89", + "name": "AssociatedLog", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines destination information for the log of activity associated with an element.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "logSubjects", + "attributeDescription": "Elements that the log records describe.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedLogs", + "attributeDescription": "Destinations for log records.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternallySourcedGlossary": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7786a39c-436b-4538-acc7-d595b5856add", + "name": "ExternallySourcedGlossary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an open metadata glossary and a related glossary stored outside of the open metadata ecosystem.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "localGlossary", + "attributeDescription": "Local glossary that relates to this external glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", + "name": "ExternalGlossaryLink", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalGlossaryLink", + "attributeDescription": "Link to a related external glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExternalReferenceLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7d818a67-ab45-481c-bc28-f6b1caf12f06", + "name": "ExternalReferenceLink", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to more information.", + "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": "pages", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Range of pages in the external reference that this link refers.", + "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 relevance of this reference to the linked item.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "referenceId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Local identifier for the reference.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedItem", + "attributeDescription": "Item that is referencing this work.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "name": "ExternalReference", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "externalReference", + "attributeDescription": "Link to more information from an external source.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "MediaReference": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1353400f-b0ab-4ab9-ab09-3045dd8a7140", + "name": "MediaReference", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to related media such as images, videos and audio.", + "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": "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 relevance of this media to the linked item.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaUsageOtherId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 code (typically a valid value definition) that defines the media use.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Local identifier for the media.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mediaUsage", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c6861a72-7485-48c9-8040-876f6c342b61", + "name": "MediaUsage", + "description": "Defines how a related media reference should be used.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Icon", + "description": "Provides a small image to represent the asset in tree views and graphs." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Thumbnail", + "description": "Provides a small image about the asset that can be used in lists." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Illustration", + "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "UsageGuidance", + "description": "Provides guidance to a person on how to use the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Specific media usage by the consumer that overrides the media usage document in the related media.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumingItem", + "attributeDescription": "Item that is referencing this work.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "747f8b86-fe7c-4c9b-ba75-979e093cc307", + "name": "RelatedMedia", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedMedia", + "attributeDescription": "Link to external media.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ValidValue": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "707a156b-e579-4482-89a5-de5889da1971", + "name": "ValidValue", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms where one defines one of the data values for the another.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValueFor", + "attributeDescription": "Glossary terms for data items that can be set to this value.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValues", + "attributeDescription": "Glossary terms for data values that can be used with data items represented by this glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ExecutionPointUse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3eb268f4-9419-4281-a487-d25ccd88eba3", + "name": "ExecutionPointUse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance execution point definition and the governance definition it supports.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportsGovernanceDefinitions", + "attributeDescription": "Governance definition that is implemented by this execution point.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", + "name": "ExecutionPointDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "executedThrough", + "attributeDescription": "Description of the execution points that support the implementation of this governance definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AgreementItem": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a540c361-0ed1-45d6-b525-007592ae806d", + "name": "AgreementItem", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An identified item in an agreement.", + "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": "agreementItemId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 item within the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "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": "agreementStart", + "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 this item becomes active in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "agreementEnd", + "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 this item becomes inactive in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "usageMeasurements", + "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": "Measurements of the actual use of this item under the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreementContents", + "attributeDescription": "The agreement that the item relates to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreementItems", + "attributeDescription": "Specific items in the agreement.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "TeamStructure": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5ebc4fb2-b62a-4269-8f18-e9237a2229ca", + "name": "TeamStructure", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a team hierarchy.", + "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": "delegationEscalationAuthority", + "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": "Can delegations and escalations flow on this relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "superTeam", + "attributeDescription": "The aggregating team.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "name": "Team", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subTeam", + "attributeDescription": "The teams where work is delegated to.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NextGovernanceAction": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4efd16d4-f397-449c-a75d-ebea42fe581b", + "name": "NextGovernanceAction", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Linking of governance actions to show execution sequence.", + "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": "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": "DEPRECATED_ATTRIBUTE", + "attributeDescription": "Trigger one or many next action instances? (deprecated)", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "guard", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 guard that is returned by the previous action that means this next action will run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mandatoryGuard", + "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 guard mandatory for the next action to run.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "previousActions", + "attributeDescription": "Governance action that triggered this governance action.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "name": "GovernanceAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "followOnActions", + "attributeDescription": "Governance actions that should run next.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ProjectDependency": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5b6a56f1-68e2-4e10-85f0-fda47a4263fd", + "name": "ProjectDependency", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A dependency relationship between projects.", + "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": "dependencySummary", + "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": "Reasons for the project dependency.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependentProject", + "attributeDescription": "Projects that are dependent on this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dependsOnProjects", + "attributeDescription": "Projects that are delivering resources or outcomes needed by this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DetailedProcessingActions": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0ac0e793-6727-45d2-9403-06bd19d9ce2e", + "name": "DetailedProcessingActions", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the individual actions in a data processing description.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentProcessingDescriptions", + "attributeDescription": "The aggregating processing descriptions.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7f53928f-9148-4710-ad37-47633f33cb08", + "name": "DataProcessingAction", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProcessingActions", + "attributeDescription": "The individual actions that make up the data processing description.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedTermsAndConditions": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8292343f-6a96-4ca8-a447-38f734c75634", + "name": "AttachedTermsAndConditions", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The terms and conditions 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": "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 related terms and conditions.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "subjectOfTermsAndConditions", + "attributeDescription": "Entity that the terms and condition applied.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "2ddc42d3-7791-4b4e-a064-91df9300290a", + "name": "TermsAndConditions", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "termsAndConditions", + "attributeDescription": "Entitlements, restrictions and obligations.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "InformationSupplyChainLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "207e5130-ab7c-4048-9249-a63a43c13d60", + "name": "InformationSupplyChainLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two related information supply chain segments -or to their source or destination.", + "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": "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplyFrom", + "attributeDescription": "Logical source of the information supply chain.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplyTo", + "attributeDescription": "Logical destination of an information supply chain.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernedBy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "89c3c695-9e8d-4660-9f44-ed971fd55f89", + "name": "GovernedBy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows the resources that are governed by a specific governance definition.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governedBy", + "attributeDescription": "The governance definition that defines how this element is governed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "governedElements", + "attributeDescription": "An element that is governed according to the governance definition.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalSupport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f", + "name": "DigitalSupport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the digital services supporting each business capability.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "usesDigitalServices", + "attributeDescription": "The digital services that this business capability depends on.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", + "name": "BusinessCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consumingBusinessCapabilities", + "attributeDescription": "The business capabilities that depend on the digital services.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NestedLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "f82a96c2-95a3-4223-88c0-9cbf2882b772", + "name": "NestedLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between two locations to show one is nested inside another.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "groupingLocations", + "attributeDescription": "Location that is covering the broader area.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "nestedLocations", + "attributeDescription": "Location that is nested in this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProfileLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4", + "name": "ProfileLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies an association between an Actor Profile and a Location, such as a person's primary work location.", + "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": "associationType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 that describes the purpose of the association.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "name": "ActorProfile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedProfiles", + "attributeDescription": "Profiles of actors associated with the location.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedLocations", + "attributeDescription": "Locations that the actor is associated with.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LinkedFile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "970a3405-fde1-4039-8249-9aa5f56d5151", + "name": "LinkedFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A data file that is linked to a file folder (rather than stored in it).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", + "name": "FileFolder", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedFolders", + "attributeDescription": "Folders that this file is linked to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedFiles", + "attributeDescription": "Files linked to the folder.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermCategorization": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "696a81f5-ac60-46c7-b9fd-6979a1e7ad27", + "name": "TermCategorization", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary term into a glossary category.", + "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": "Explanation of why this term is in this categorization.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Status of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "categories", + "attributeDescription": "Glossary categories that this term is linked to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "terms", + "attributeDescription": "Glossary terms linked to this category.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "APIEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "de5b9501-3ad4-4803-a8b2-e311c72a4336", + "name": "APIEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The endpoint for a deployed API.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedAPIs", + "attributeDescription": "APIs that can be called from this endpoint.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "accessEndpoints", + "attributeDescription": "Endpoints used to call this API.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "VisibleEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb", + "name": "VisibleEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Shows that network that an endpoint is visible through.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "visibleEndpoints", + "attributeDescription": "Endpoint callable through network.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "name": "Network", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "visibleInNetwork", + "attributeDescription": "Networks from which the endpoint can be called.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ConnectionEndpoint": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "887a7132-d6bc-4b92-a483-e80b60c86fb2", + "name": "ConnectionEndpoint", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a connection and the endpoint that the connector should use.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "name": "Endpoint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectionEndpoint", + "attributeDescription": "Server endpoint that provides access to the asset.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connections", + "attributeDescription": "Connections to this endpoint.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CategoryAnchor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c628938e-815e-47db-8d1c-59bb2e84e028", + "name": "CategoryAnchor", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Connects a glossary category with its owning glossary.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "anchor", + "attributeDescription": "Owning glossary for this category.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "name": "GlossaryCategory", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "categories", + "attributeDescription": "Categories owned by this glossary.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SupportedSoftwareCapability": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2480aa71-44c5-414d-8b32-9c4340786d77", + "name": "SupportedSoftwareCapability", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies a software capability that is deployed to an instance of IT infrastructure.", + "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": "deploymentTime", + "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": "Time that the software capability was deployed to the IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployer", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person, organization or engine that deployed the software capability.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deployerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifying property name of deployer.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "capabilityStatus", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", + "name": "OperationalStatus", + "description": "Defines whether a component is operational.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Disabled", + "description": "The component is not operational." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Enabled", + "description": "The component is operational." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The operational status of the software capability on this IT Infrastructure.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "hostedByDeployedITInfrastructure", + "attributeDescription": "IT infrastructure hosting this capability.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "capabilities", + "attributeDescription": "Capabilities deployed on this IT infrastructure.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProjectTeam": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "746875af-2e41-4d1f-864b-35265df1d5dc", + "name": "ProjectTeam", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The team assigned to a project.", + "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": "teamRole", + "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": "Description of the role of the team in the project.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "projectFocus", + "attributeDescription": "Projects that a team is working on.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportingActors", + "attributeDescription": "People and teams supporting this project.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessOutput": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e3e40f99-70fe-478c-9676-78a50cded70b", + "name": "ProcessOutput", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The feed of data from a process.", + "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": "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 data feed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "producedByProcess", + "attributeDescription": "Process that is creating and updating the information in the asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "processOutputData", + "attributeDescription": "Asset receiving output data.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "LineageMapping": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff", + "name": "LineageMapping", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two schema attributes.", + "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": "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 name of the lineage flow.", + "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 and purpose of the lineage flow.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "sourceElement", + "attributeDescription": "Source Attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "targetElement", + "attributeDescription": "Target Attribute.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ValidValuesAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "c5d48b73-eadd-47db-ab64-3be99b2fb32d", + "name": "ValidValuesAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a referenceable to its 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", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "strictRequirement", + "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": "Only values from the ValidValues set/definition are allowed.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValuesConsumer", + "attributeDescription": "The valid values set that this element belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "validValues", + "attributeDescription": "A definition of the valid values for this element.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "Peer": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4a316abe-bccd-4d11-ad5a-4bfb4079b80b", + "name": "Peer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying a person's peer network.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peers", + "attributeDescription": "List of this person's peer network.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "name": "Person", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peers", + "attributeDescription": "List of this person's peer network.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ActionAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "af2b5fab-8f83-4a2b-b749-1e6219f61f79", + "name": "ActionAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A person who has been assigned to complete the to do (action).", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedResources", + "attributeDescription": "One or more people assigned to complete the action (to do).", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedActor", + "attributeDescription": "The person/people assigned to perform the action(s) requested in the to do.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalServiceDesign": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2", + "name": "DigitalServiceDesign", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the solution blueprint for 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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describesDigitalService", + "attributeDescription": "Digital service described by the blueprint.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", + "name": "SolutionBlueprint", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalServiceDesigns", + "attributeDescription": "The difference versions of the digital service's designs.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "Certification": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "390559eb-6a0c-4dd7-bc95-b9074caffa7f", + "name": "Certification", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An awarded certification of a specific type.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes about the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodian", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person, engine or organization that will ensure the certification is honored.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certifiedByTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the certifiedBy property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certificateGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 actual certificate.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "start", + "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 for the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "recipientPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the recipient property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certifiedByPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the certifiedBy property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "custodianPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the custodian property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "recipient", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person or organization that received the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "end", + "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": "End date for the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "recipientTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element referenced in the recipient property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "conditions", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Any special conditions or endorsements over the basic certification type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "certifiedBy", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person or organization awarded the certification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "certifies", + "attributeDescription": "Items certified by this type of certification.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea", + "name": "CertificationType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "certifications", + "attributeDescription": "The types of certifications that apply.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ConsolidatedDuplicateLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82", + "name": "ConsolidatedDuplicateLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a detected duplicate entity and an entity that contains the combined values of this entity and its other duplicates.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consolidatedDuplicateOrigin", + "attributeDescription": "Detected duplicate element - the source of the properties.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "consolidatedDuplicateResult", + "attributeDescription": "Element resulting from combining the duplicate entities.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "NetworkGatewayLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3", + "name": "NetworkGatewayLink", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link from a network to one of its network gateways.", + "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 for the network mapping.", + "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 and purpose of the network mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "externalEndpointAddress", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Network address used by callers to the network gateway.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "internalEndpointAddress", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Network address that the network gateway maps the request to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9bbae94d-e109-4c96-b072-4f97123f04fd", + "name": "NetworkGateway", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "gateways", + "attributeDescription": "Gateways to other networks.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "name": "Network", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "networkConnections", + "attributeDescription": "Connections to different networks.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "ConnectionConnectorType": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96", + "name": "ConnectionConnectorType", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a connection and the connector type that should be used.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "name": "Connection", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connections", + "attributeDescription": "Connections using this connector type.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", + "name": "ConnectorType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "connectorType", + "attributeDescription": "Type of connector to use for the asset.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "Antonym": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "ea5e126a-a8fa-4a43-bcfa-309a98aa0185", + "name": "Antonym", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between glossary terms that have the opposite meaning.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "antonyms", + "attributeDescription": "Glossary terms with the opposite meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "antonyms", + "attributeDescription": "Glossary terms with the opposite meaning.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GraphEdgeLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "503b4221-71c8-4ba9-8f3d-6a035b27971c", + "name": "GraphEdgeLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A relationship between a graph edge and a vertex.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", + "name": "GraphEdge", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "edges", + "attributeDescription": "Edges for this vertex.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "1252ce12-540c-4724-ad70-f70940956de0", + "name": "GraphVertex", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "vertices", + "attributeDescription": "Vertices for this edge.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GlossaryTermEvolution": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b323c9cf-f254-49c7-a391-11222e9da70f", + "name": "GlossaryTermEvolution", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a live glossary term with a future version of the term.", + "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": "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": "Short description of the update.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c04e29b2-2d66-48fc-a20d-e59895de6040", + "name": "ControlledGlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "glossaryTermUpdates", + "attributeDescription": "A glossary term that contains proposed updates to the live glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "liveGlossaryTerm", + "attributeDescription": "The approved term that is in use.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SupportedGovernanceService": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2726df0e-4f3a-44e1-8433-4ca5301457fd", + "name": "SupportedGovernanceService", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a governance engine and one of its services.", + "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": "serviceRequestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Request type supported by the governance action service (overrides requestType on call to governance service if specified).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 request type used to call the service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "requestParameters", + "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 configure the governance service for this type of request.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "name": "GovernanceEngine", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "calledFromGovernanceEngines", + "attributeDescription": "Governance Engine making use of the governance service.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "191d870c-26f4-4310-a021-b8ca8772719d", + "name": "GovernanceService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedGovernanceServices", + "attributeDescription": "Governance service that is part of the governance engine.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "DigitalServiceManagement": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "91ff7542-c275-4cd3-b367-97eec3360422", + "name": "DigitalServiceManagement", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the individual responsible for each digital service.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "name": "DigitalService", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "managesDigitalServices", + "attributeDescription": "The digital services that this individual manages.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalServiceManagers", + "attributeDescription": "The roles for managing this digital service.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ISARelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "50fab7c7-68bc-452f-b8eb-ec76829cac85", + "name": "ISARelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a more general glossary term and a more specific definition.", + "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 relationship.", + "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": "An expression that explains the relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "classifies", + "attributeDescription": "More specific glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "isA", + "attributeDescription": "More general glossary terms.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "Meetings": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "a05f918e-e7e2-419d-8016-5b37406df63a", + "name": "Meetings", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A meeting about a specific project, deliverable, situation or plan of action.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bf90c79-32f4-47ad-959c-8fff723fe744", + "name": "Meeting", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "meetings", + "attributeDescription": "Related meetings.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "meetingOwner", + "attributeDescription": "Person, project, community or team that called the meeting.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "SearchKeywordLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d2f8df24-6905-49b8-b389-31b2da156ece", + "name": "SearchKeywordLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Provides a link to a keyword that helps to identify specific elements in a search.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedElements", + "attributeDescription": "Element described by the search keyword.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "name": "SearchKeyword", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "searchKeywords", + "attributeDescription": "Keywords to describe the element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceControlLink": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "806933fb-7925-439b-9876-922a960d2ba1", + "name": "GovernanceControlLink", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two related governance controls.", + "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 relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "name": "GovernanceControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkingControls", + "attributeDescription": "Governance controls that ate dependent on this control.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "name": "GovernanceControl", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "linkedControls", + "attributeDescription": "Governance controls that support the implementation of this control.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DesignModelOwnership": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d57043c2-eeab-4167-8d0d-2223af8aee93", + "name": "DesignModelOwnership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links design model elements to their owning model.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "name": "DesignModel", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "owningDesignModel", + "attributeDescription": "Owning model.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "designModelElements", + "attributeDescription": "List of elements that belong to this model.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedRating": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344", + "name": "AttachedRating", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a rating to an item.", + "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": "isPublic", + "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 the attached rating visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "ratingAnchor", + "attributeDescription": "Element that is rated.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "7299d721-d17f-4562-8286-bcd451814478", + "name": "Rating", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "starRatings", + "attributeDescription": "Accumulated ratings.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataClassAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4df37335-7f0c-4ced-82df-3b2fd07be1bd", + "name": "DataClassAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a data class to an asset or schema element to define its logical data 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": "method", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Method used to identify data class.", + "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": "2611892f-0527-478f-8843-a3aa2b9abb47", + "name": "DataClassAssignmentStatus", + "description": "Defines the provenance and confidence of a data class assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The data class assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The data class assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The data class assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The data class assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The data class assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data class assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another data class assignment status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "partialMatch", + "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": "Are there data values outside of the data class specification?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the data class assignment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "threshold", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "52aeb769-37b7-4b30-b949-ddc7dcebcfa2", + "name": "float", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_FLOAT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "What was the threshold result used to determine that the data class matched.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "valueFrequency", + "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": "How often does the data class specification match the data values.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for validating the data class assignment.", + "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": "Person, organization or automated process that created the data class assignment.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "elementsAssignedToDataClass", + "attributeDescription": "Elements identified as managing data values that match the specification of a data class.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "name": "DataClass", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataClassesAssignedToElement", + "attributeDescription": "Logical data type for this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedNoteLog": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4f798c0c-6769-4a2d-b489-d2714d89e0a4", + "name": "AttachedNoteLog", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a note log to an item.", + "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": "isPublic", + "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 the attached note log visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "describes", + "attributeDescription": "Subject of the note log.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "noteLogs", + "attributeDescription": "Log of related notes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CrowdSourcingContribution": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4db83564-b200-4956-94a4-c95a5c30e65a", + "name": "CrowdSourcingContribution", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines one of the actors contributing content to a new description or asset.", + "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": "roleType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "0ded50c2-17cc-4ecf-915e-908e66dbb27f", + "name": "CrowdSourcingRole", + "description": "Type of contributor to new information and/or assets.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Proposer", + "description": "Actor that creates the initial version." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewer", + "description": "Actor that provided feedback." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Supporter", + "description": "Actor that agrees with the definition." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Approver", + "description": "Actor that declares the definition should be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of contribution.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributions", + "attributeDescription": "Items that this person has contributed.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "contributors", + "attributeDescription": "The person/people making the contribution.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "InformationSupplyChainComposition": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "fcdccfa3-e9f0-4543-8720-1958799fb6dc", + "name": "InformationSupplyChainComposition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship identifying the segments in an information supply chain.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "fa6de61d-98cb-48c4-b21f-ab7186235fd4", + "name": "InformationSupplyChain", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "informationSupplyChains", + "attributeDescription": "Owning information supply chain.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1", + "name": "InformationSupplyChainSegment", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "segments", + "attributeDescription": "A role performed by this person.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ProcessHierarchy": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "70dbbda3-903f-49f7-9782-32b503c43e0e", + "name": "ProcessHierarchy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A hierarchical relationship between processes.", + "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": "containmentType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1bb4b908-7983-4802-a2b5-91b095552ee9", + "name": "ProcessContainmentType", + "description": "The containment relationship between two processes.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "OWNED", + "description": "The parent process owns the child process in the relationship, such that if the parent is removed the child should also be removed. A child can have at most one such parent." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "USED", + "description": "The child process is simply used by the parent. A child process can have many such relationships to parents." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "OTHER", + "description": "None of the above." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The type of containment that exists between the related processes.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "parentProcess", + "attributeDescription": "The more abstract or higher-level process.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "name": "Process", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "childProcess", + "attributeDescription": "The more detailed or lower-level process.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AdjacentLocation": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "017d0518-fc25-4e5e-985e-491d91e61e17", + "name": "AdjacentLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between two locations that are next to one another.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerLocations", + "attributeDescription": "Location that is adjacent to this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "peerLocations", + "attributeDescription": "Location that is adjacent to this location.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SemanticAssignment": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e6670973-645f-441a-bec7-6f5570345b92", + "name": "SemanticAssignment", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a glossary term to another element such as an asset or schema element to define its meaning.", + "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 relationship.", + "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 describing the relationship.", + "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": "c8fe36ac-369f-4799-af75-46b9c1343ab3", + "name": "TermAssignmentStatus", + "description": "Defines the provenance and confidence of a term assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The term assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The term assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The term assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The term assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The term assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The term assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term assignment status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the correctness of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assignedElements", + "attributeDescription": "Elements identified as managing data that has the same meaning as this glossary term.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "meaning", + "attributeDescription": "Semantic definition for this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AgreementActor": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "1c811d0b-e9ce-44af-b6ed-133e73322e32", + "name": "AgreementActor", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An actor identified in an agreement.", + "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": "actorName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 identify a specific actor in the agreement.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "name": "Agreement", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "relatedAgreements", + "attributeDescription": "The agreements that include the actor.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "name": "Actor", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "agreementActors", + "attributeDescription": "The actors that are named in the agreement.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": true + } + }, + "IncidentOriginator": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e490772e-c2c5-445a-aea6-1aab3499a76c", + "name": "IncidentOriginator", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an incident report and its originator (person, process, engine, ...).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "originators", + "attributeDescription": "Source(s) of the incident report.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "resultingIncidentReports", + "attributeDescription": "Descriptions of detected incidents.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "PortSchema": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "B216fA00-8281-F9CC-9911-Ae6377f2b457", + "name": "PortSchema", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between a Port and a SchemaType", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "name": "Port", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "port", + "attributeDescription": "Port", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "name": "SchemaType", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "SchemaType", + "attributeDescription": "SchemaType", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "AttachedTag": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "4b1641c4-3d1a-4213-86b2-d6968b6c65ab", + "name": "AttachedTag", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links an informal tag to an item.", + "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": "isPublic", + "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 the attached tag visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "taggedElement", + "attributeDescription": "Element that is tagged.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ba846a7b-2955-40bf-952b-2793ceca090a", + "name": "InformalTag", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "tags", + "attributeDescription": "Accumulated tags.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "TermHASARelationship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c", + "name": "TermHASARelationship", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Defines the relationship between a spine object and a spine attribute.", + "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 relationship.", + "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The status of or confidence in the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the relationship.", + "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": "Person, organization or automated process that created the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "objects", + "attributeDescription": "Objects where this attribute may occur.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "attributes", + "attributeDescription": "Typical attributes for this object.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ActionTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "207e2594-e3e4-4be8-a12c-4c401656e241", + "name": "ActionTarget", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Associates a To Do with one or more elements to work on.", + "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": "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": "The status of the work on this element.", + "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/time that work started on this element.", + "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/time that work stopped on this element.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "actionTargetName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 to identify the action target to the actor that processes it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "completionMessage", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Message to provide additional information on the results of acting on the target by the actor or the reasons for any failures.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "name": "ToDo", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "identifiedToDoActions", + "attributeDescription": "Actions that have been identified for this element.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "elementsToWorkOn", + "attributeDescription": "Elements that will be updated or used to complete the action.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceResponse": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8845990e-7fd9-4b79-a19d-6c4730dadd6b", + "name": "GovernanceResponse", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a governance policy to a governance driver that it is supporting.", + "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": "rationale", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Describes the reasoning for defining the policy in support of the driver.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", + "name": "GovernanceDriver", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "drivers", + "attributeDescription": "Drivers that justify this policy.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", + "name": "GovernancePolicy", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "policies", + "attributeDescription": "Governance policies that support this governance driver.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SolutionComponentPort": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "5652d03a-f6c9-411a-a3e4-f490d3856b64", + "name": "SolutionComponentPort", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a solution component and its ports.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "name": "SolutionComponent", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "solutionComponent", + "attributeDescription": "Owning solution component that this port belongs to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "name": "SolutionPort", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "solutionPorts", + "attributeDescription": "List ports for this solution component.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ValidValuesMapping": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "203ce62c-3cbf-4542-bf82-81820cba718f", + "name": "ValidValuesMapping", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "A link between two valid values from different valid value sets that have equivalent meanings.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "associationDescription", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 describing how they are related.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 notes on the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for the mapping.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 between 0 and 100 indicating the confidence that the match is correct.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "matchingValue", + "attributeDescription": "A valid value from a different valid value set that is equivalent.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", + "name": "ValidValueDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "matchingValue", + "attributeDescription": "A valid value from a different valid value set that is equivalent.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "GovernanceDefinitionScope": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "3845b5cc-8c85-462f-b7e6-47472a568793", + "name": "GovernanceDefinitionScope", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between a scope - such as a digital service, infrastructure element or organization - and a governance definition.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "definitionAppliesTo", + "attributeDescription": "Elements defining the scope that the governance definition applies to.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "name": "GovernanceDefinition", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "associatedGovernanceDefinitions", + "attributeDescription": "Governance definitions for this scope.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DataProfileLogFile": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "75026fac-f9e5-4da8-9ad1-e9c68d47f577", + "name": "DataProfileLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link to the log file containing the data profile information.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "368e6fb3-7323-4f81-a723-5182491594bd", + "name": "DataProfileLogAnnotation", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProfileAnnotations", + "attributeDescription": "The annotations that refer to this log file.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ff4c8484-9127-464a-97fc-99579d5bc429", + "name": "LogFile", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "dataProfileLogFiles", + "attributeDescription": "Location of the data profile information.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "ImpactedResource": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "0908e153-e0fd-499c-8a30-5ea8b81395cd", + "name": "ImpactedResource", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Link between an impacted referenceable and an incident report.", + "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": "severityLevelIdentifier", + "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 severe is the impact on the resource?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "impactedResources", + "attributeDescription": "Resources impacted by the incident.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "name": "IncidentReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "incidentReports", + "attributeDescription": "Descriptions of incidents affection this resource and the action taken.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AssetDiscoveryReport": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "7eded424-f176-4258-9ae6-138a46b2845f", + "name": "AssetDiscoveryReport", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "An analysis report from a discovery service.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "discoveryReportTarget", + "attributeDescription": "The asset that is analyzed in the report.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "name": "OpenDiscoveryAnalysisReport", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "assetDiscoveryAnalysisReports", + "attributeDescription": "The reports produced about this asset.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "AttachedLike": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "e2509715-a606-415d-a995-61d00503dad4", + "name": "AttachedLike", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a like to an item.", + "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": "isPublic", + "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 the attached like visible to more than the originator?", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "likeAnchor", + "attributeDescription": "Element that is liked.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "deaa5ca0-47a0-483d-b943-d91c76744e01", + "name": "Like", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "likes", + "attributeDescription": "Accumulated likes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "NoteLogAuthorship": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "8f798c0c-6769-4a2d-b489-12714d89e0a4", + "name": "NoteLogAuthorship", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Links a note log to an author.", + "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", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "name": "PersonRole", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "authors", + "attributeDescription": "Person contributing to the note log.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", + "name": "NoteLog", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "authoredNoteLogs", + "attributeDescription": "Note log containing contributions.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "SupplementaryProperties": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd", + "name": "SupplementaryProperties", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Provides additional descriptive properties to augment technical metadata extracted from a third party technology.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplementsElement", + "attributeDescription": "Describes this technical element.", + "attributeCardinality": "AT_MOST_ONE" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supplementaryProperties", + "attributeDescription": "Provides more information about this element.", + "attributeCardinality": "AT_MOST_ONE" + }, + "multiLink": false + } + }, + "PermittedProcessing": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "b472a2ec-f419-4d3f-86fb-e9d97365f961", + "name": "PermittedProcessing", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Relationship relates data processing descriptions with purposes (outcomes).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "name": "DataProcessingPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "supportedPurposes", + "attributeDescription": "The supported outcomes from the processing.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "name": "DataProcessingDescription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "permittedProcessing", + "attributeDescription": "The description of the processing that is permitted for the purposes.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "DigitalSubscriber": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4", + "name": "DigitalSubscriber", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "The link between a digital subscriber and the subscription details.", + "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": "subscriberId", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 subscriber.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalSubscribers", + "attributeDescription": "The digital subscribers registered under a subscription.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", + "name": "DigitalSubscription", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "digitalSubscriptions", + "attributeDescription": "The digital subscriptions in use by the subscriber.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + }, + "CatalogTarget": { + "relationshipDef": { + "class": "RelationshipDef", + "headerVersion": 1, + "guid": "bc5a5eb1-881b-4055-aa2c-78f314282ac2", + "name": "CatalogTarget", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "RELATIONSHIP_DEF", + "description": "Identifies an element that an integration connector is to work with.", + "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": "catalogTargetName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Symbolic name of the catalog target to help the integration connector to choose when to use it.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "propagationRule": "NONE", + "endDef1": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db", + "name": "IntegrationConnector", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "cataloguedByConnectors", + "attributeDescription": "An integration connector managing metadata synchronization.", + "attributeCardinality": "ANY_NUMBER" + }, + "endDef2": { + "headerVersion": 1, + "entityType": { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + }, + "attributeName": "catalogTargets", + "attributeDescription": "An open metadata element that the integration connector is working on.", + "attributeCardinality": "ANY_NUMBER" + }, + "multiLink": false + } + } + }, + "classifications": { + "SecurityGroupMembership": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "21a16f1e-9231-4983-b371-a0686d555273", + "name": "SecurityGroupMembership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the set of user groups that this user identity is a member of.", + "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": "groups", + "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 user group names.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", + "name": "UserIdentity", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "RequestResponseInterface": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "14a29330-e830-4343-a41e-d57e2cec82f8", + "name": "RequestResponseInterface", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an API that supports a request response interaction style.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceDomainSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e66bb681-99a1-4712-a2c9-712c8b0f83ae", + "name": "GovernanceDomainSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the definitions for the different governance domains in use by the organization.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SpineAttribute": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ccb749ba-34ec-4f71-8755-4d8b383c34c3", + "name": "SpineAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes an attribute of a spine object.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LineageLog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "876e55db-27b9-4132-ad00-bbf882ea8e8a", + "name": "LineageLog", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of related lineage log records.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of lineage log events.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this lineage log.", + "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": "Source of the lineage log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "KnownDuplicate": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e55062b2-907f-44bd-9831-255642285731", + "name": "KnownDuplicate", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines that duplicate resolution processing is required.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyEnforcementPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9a68b20b-3f84-4d7d-bc9e-790c4b27e685", + "name": "PolicyEnforcementPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where the result of a policy decision are enforced.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy enforcement point.", + "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 policy enforcement point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy enforcement point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy enforcement point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "TypeEmbeddedAttribute": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e2bb76bb-774a-43ff-9045-3a05f663d5d9", + "name": "TypeEmbeddedAttribute", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Type information embedded within an attribute.", + "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": "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": "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 name for the schema type.", + "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 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": "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 type (primitive and enum types).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "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": "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": "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 schema type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "schemaTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 schema type.", + "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": "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 type (literal schema type).", + "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": "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 schema type.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "name": "SchemaAttribute", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "BusinessSignificant": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "085febdd-f129-4f4b-99aa-01f3e6294e9f", + "name": "BusinessSignificant", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A referenceable item that is meaningful to business users.", + "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": "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 item in business terms.", + "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 where this item is meaningful.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "businessCapabilityGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 business capability that this relevant to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LineageLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9992758d-d7dd-432d-b84e-62fe007a6364", + "name": "LineageLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing operational lineage events.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Criticality": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d46d211a-bd22-40d5-b642-87b4954a167e", + "name": "Criticality", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines how critical the related data items are to the organization.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "22bcbf49-83e1-4432-b008-e09a8f842a1e", + "name": "CriticalityLevel", + "description": "Defines how important a data item is to the organization.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Marginal", + "description": "The data is of minor importance to the organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Important", + "description": "The data is important to the running of the organization." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Critical", + "description": "The data is critical to the operation of the organization." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Catastrophic", + "description": "The data is so important that its loss is catastrophic putting the future of the organization in doubt." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another criticality level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "levelIdentifier", + "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the criticality level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "Defined criticality level for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataStoreEncoding": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f08e48b5-6b66-40f5-8ff6-c2bfe527330b", + "name": "DataStoreEncoding", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Description for how data is organized and represented in a data store.", + "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": "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 type.", + "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": "Language used in the encoding.", + "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 the encoding.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "properties", + "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 encoding.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47", + "name": "DataStore", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MeteringLog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "161b37c9-1d51-433b-94ce-5a760a198236", + "name": "MeteringLog", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of related metering log records.", + "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": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this metering log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of metering log records in this collection.", + "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": "Source of the metering log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "UserProfileManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "53ef4062-9e0a-4892-9824-8d51d4ad59d3", + "name": "UserProfileManager", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A system that sores descriptions of individuals and their roles/interests in an organization.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AssetOrigin": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e530c566-03d2-470a-be69-6f52bfbd5fb7", + "name": "AssetOrigin", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the origin of an asset.", + "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": "businessCapabilityPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the businessCapability property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organization", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 (GUID) of the organization where this asset originated from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "organizationPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the organization property.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "otherOriginValues", + "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": "Descriptive labels describing origin of the asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "businessCapability", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 (GUID) of the business capability where this asset originated from.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ContextDefinition": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "54f9f41a-3871-4650-825d-59a41de01330", + "name": "ContextDefinition", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes a context where processing or decisions occur.", + "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 for how the context is 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": "Scope of influence of the context.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "StewardshipServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "eaaeaa31-6f8b-4ed5-88fe-422ed3733158", + "name": "StewardshipServer", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server dedicated to managing stewardship activity relating to governance 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "FileManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "eadec807-02f0-4d6f-911c-261eddd0c2f5", + "name": "FileManager", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a software server capability as a manager of a collection of files and folders.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceExpectations": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "fcda7261-865d-464d-b279-7d9880aaab39", + "name": "GovernanceExpectations", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A set of expectation values on the performance and use of the connected resource.", + "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": "counts", + "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": "A set of metric name to count value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "values", + "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": "A set of metric name to string value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "flags", + "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": "A set of metric name to boolean value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LogAnalysis": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "38cf214c-244d-435c-a328-251026356e6b", + "name": "LogAnalysis", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A set of results from the analysis of a log record - or collection of log records.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on the processing of the log records.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that produced this analysis.", + "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": "Source of the analysis process.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "counts", + "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": "A set of metric name to count value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "values", + "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": "A set of metric name to string value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "flags", + "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": "A set of metric name to boolean value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SpineObject": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a41ee152-de1e-4533-8535-2f8b37897cac", + "name": "SpineObject", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes a type of spine object.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "VerificationPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "12d78c95-3879-466d-883f-b71f6477a741", + "name": "VerificationPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A governance rule that tests if a required condition is true or raises an exception if not.", + "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", + "name": "int", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of the enforcement point definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MobileAsset": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "b25fb90d-8fa2-4aa9-b884-ff0a6351a697", + "name": "MobileAsset", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An asset not restricted to a single physical location.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceMeasurements": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9d99d962-0214-49ba-83f7-c9b1f9f5bed4", + "name": "GovernanceMeasurements", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A set of measurements on the performance and use of the connected resource.", + "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": "measurementCounts", + "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": "A set of metric name to current count value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "measurementValues", + "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": "A set of metric name to current value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "measurementFlags", + "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": "A set of metric name to current boolean value pairs.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DigitalProduct": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4aaaa7ca-6b4b-4c4b-997f-d5dfd42917b0", + "name": "DigitalProduct", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an element that represents a digital product.", + "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": [ + "DRAFT", + "PREPARED", + "PROPOSED", + "APPROVED", + "REJECTED", + "APPROVED_CONCEPT", + "UNDER_DEVELOPMENT", + "DEVELOPMENT_COMPLETE", + "APPROVED_FOR_DEPLOYMENT", + "ACTIVE", + "DISABLED", + "DEPRECATED", + "OTHER", + "DELETED" + ], + "initialStatus": "ACTIVE", + "propertiesDefinition": [ + { + "headerVersion": 1, + "attributeName": "syncDatesByKey", + "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": "DEPRECATED_ATTRIBUTE", + "attributeDescription": "Collection of synchronization dates identified by a key (deprecated, added in error).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "maturity", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of maturity for the product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "serviceLife", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Length of time that the product is expected to be in service.", + "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": "Any additional properties needed to describe the product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "withdrawDate", + "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": "What date what the product withdrawn, preventing new consumers.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "nextVersion", + "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 is the next version expected to be released.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "productName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "productType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 or category of the product.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "currentVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Which is the current supported version that is recommended for consumers.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "introductionDate", + "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 that the product was made available.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ReportingEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e07eefaa-16e0-46cf-ad54-bed47fb15812", + "name": "ReportingEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of creating reports by combining information from multiple 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Set": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3947f08d-7412-4022-81fc-344a20dfbb26", + "name": "Set", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines that a collection is an unordered set of items.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Taxonomy": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "37116c51-e6c9-4c37-942e-35d48c8c69a0", + "name": "Taxonomy", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary that includes a taxonomy.", + "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": "organizingPrinciple", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Characteristics that influence the organization of the taxonomy.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyRetrievalPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d7367412-7ba6-409f-84db-42b51e859367", + "name": "PolicyRetrievalPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where policies are retrieved.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy retrieval point.", + "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 policy retrieval point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy retrieval point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy retrieval point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConnectorTypeDirectory": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9678ef11-ed7e-404b-a041-736df7514339", + "name": "ConnectorTypeDirectory", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a collection of related connector types.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ChangeManagementLibrary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4e236548-b802-4a1d-a329-4abdeaae5323", + "name": "ChangeManagementLibrary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a managed collection of requirements, defects and proposed changes to a project.", + "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": "libraryType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 library - may be a product name or open source project name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PrimaryCategory": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3a6c4ba7-3cc5-48cd-8952-bwra92da016d", + "name": "PrimaryCategory", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a category as being the base category of a glossary term", + "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": "categoryQualifiedName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 qualified name of the primary category of a GlossaryTerm.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Webserver": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d13e1cc5-bb7e-41ec-8233-9647fbf92a19", + "name": "Webserver", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server that supports HTTP-based application such as websites and REST services.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "PublisherInterface": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4fdedcd5-b186-4bee-887a-02fa29a10750", + "name": "PublisherInterface", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an API that sends out events to other listening components.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Folder": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3c0fa687-8a63-4c8e-8bda-ede9c78be6c7", + "name": "Folder", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines that a collection should be treated like a file folder.", + "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": "orderBy", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1d412439-4272-4a7e-a940-1065f889fc56", + "name": "OrderBy", + "description": "Defines the sequencing for a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Name", + "description": "Order by name property." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Owner", + "description": "Order by owner property." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "DateAdded", + "description": "Order by date added to the metadata collection." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "DateUpdated", + "description": "Order by date that the asset was updated." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "DateCreated", + "description": "Order by date that the asset was created." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Order by another property." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Definition for how elements in the collection should be ordered.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "otherPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property to use for ordering.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Retention": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "83dbcdf2-9445-45d7-bb24-9fa661726553", + "name": "Retention", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the retention requirements for related data items.", + "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": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "deleteAfter", + "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 when delete can take place.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveAfter", + "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 when archiving can take place.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "basis", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "de79bf78-ecb0-4fd0-978f-ecc2cb4ff6c7", + "name": "RetentionBasis", + "description": "Defines the retention requirements associated with a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the retention requirements for this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Temporary", + "description": "This data is temporary." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "ProjectLifetime", + "description": "The data is needed for the lifetime of the referenced project." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "TeamLifetime", + "description": "The data is needed for the lifetime of the referenced team." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ContractLifetime", + "description": "The data is needed for the lifetime of the referenced contract." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "RegulatedLifetime", + "description": "The retention period for the data is defined by the referenced regulation." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "TimeBoxedLifetime", + "description": "The data is needed for the specified time." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another basis for determining the retention requirement." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "basisIdentifier", + "attributeDescription": "Deprecated attribute. Use the basisIdentifier attribute to describe the retention basis of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "basisIdentifier", + "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": "Defined retention basis for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "associatedGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Related entity used to determine the retention period.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SourceControlLibrary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "0ef3c90d-20d7-4259-8d66-9c8bb109f2ae", + "name": "SourceControlLibrary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a software source code library that provides version control.", + "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": "libraryType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 library - may be a product name or open source project name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceProject": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "37142317-4125-4046-9514-71dc5031563f", + "name": "GovernanceProject", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that a project is rolling out capability to support the governance program.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "LatestChange": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "adce83ac-10f1-4279-8a35-346976e94466", + "name": "LatestChange", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the latest change to an anchor entity and its associated attachments.", + "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": "changeTarget", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a0b7d7a0-4af5-4539-9b81-cbef52d8cc5d", + "name": "LatestChangeTarget", + "description": "Defines the type of repository element that has changed.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "EntityStatus", + "description": "The status of the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "EntityProperty", + "description": "A property in the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "EntityClassification", + "description": "A classification attached to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "EntityRelationship", + "description": "A relationship linking the anchor entity to an attachment has changed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Attachment", + "description": "An entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "AttachmentStatus", + "description": "The status of an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "AttachmentProperty", + "description": "A property in an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 7, + "value": "AttachmentClassification", + "description": "A classification attached to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 8, + "value": "AttachmentRelationship", + "description": "A relationship linking to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of change." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The relationship of element that has been changed to the anchor.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "changeAction", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "032d844b-868f-4c4a-bc5d-81f0f9704c4d", + "name": "LatestChangeAction", + "description": "Defines the type of change that was made to a repository instance.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Created", + "description": "The target element has been created." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Updated", + "description": "The properties of the target element have been changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deleted", + "description": "The target element has been deleted." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of action." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The type of change.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classificationName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "If a classification name changed, this is its name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "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": "If an attached entity or relationship to it changed, this is its unique identifier of the entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "attachmentType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "If an attached entity or relationship to changed, this is its unique type name of the entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "relationshipType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "If an attached entity or relationship to changed, this is its unique type name of the relationship.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "user", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 user identifier for the person/system making the change.", + "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 change. Also known as the actionDescription.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ClassWord": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "feac4bd9-37d9-4437-82f6-618ce3e2793e", + "name": "ClassWord", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes classifying or grouping noun, using in naming standards.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AuditLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "109d6d13-a3cf-4687-a0c1-c3802dc6b3a2", + "name": "AuditLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing audit log records.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ObjectIdentifier": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3d1e4389-27de-44fa-8df4-d57bfaf809ea", + "name": "ObjectIdentifier", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that describes an attribute that can be used to identify an instance.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConceptModel": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "7149c2de-5f24-4959-9b24-9d5e67709fac", + "name": "ConceptModel", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that a design model as a concept model.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "name": "DesignModel", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SoftwareLibrary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "5708fa1a-2b64-4706-8e14-a020e4567db3", + "name": "SoftwareLibrary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a collection of software modules. Also known as the definitive software library.", + "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": "libraryType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 library - may be a product name or open source project name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AssetManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "03170ce7-edf1-4e94-b6ab-2d5cbbf1f13c", + "name": "AssetManager", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a capability that manages metadata about assets.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "RepositoryProxy": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ae81c35e-7078-46f0-9b2c-afc99accf3ec", + "name": "RepositoryProxy", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server acting as an open metadata adapter for a metadata repository.", + "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 repository proxy.", + "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 repository proxy.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "CyberLocation": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f9ec3633-8ac8-480b-aa6d-5e674b9e1b17", + "name": "CyberLocation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A digital location.", + "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": "address", + "attributeType": { + "class": "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": "Address of the location (Deprecated).", + "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": "Base network address used to connect to the location's endpoint(s).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataMovementEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d2ed6621-9d99-4fe8-843a-b28d816cf888", + "name": "DataMovementEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of copying data from one data store to another.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudTenant": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "1b8f8522-e606-4f65-86d3-84891706ad12", + "name": "CloudTenant", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A software server supporting cloud services.", + "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": "tenantType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of tenant.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "tenantName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 tenant.", + "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": "tenantType", + "attributeDescription": "Deprecated attribute. Use the tenantType attribute to describe the type of cloud tenant.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", + "name": "SoftwareServer", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudService": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "337e7b1a-ad4b-4818-aa3e-0ff3307b2fbe", + "name": "CloudService", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A service running on a cloud platform.", + "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": "serviceType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 type of the service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "offeringName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Commercial name of the service.", + "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": "serviceType", + "attributeDescription": "Deprecated attribute. Use the serviceType attribute to describe the type of cloud service.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ControlPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "acf8b73e-3545-435d-ba16-fbfae060dd28", + "name": "ControlPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A task in a process where a person must make a decision on the right action to take.", + "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", + "name": "int", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of the enforcement point definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ListenerInterface": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4099d2ed-2a5e-4c44-8443-9de4e378a4ba", + "name": "ListenerInterface", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an API that listens for incoming events and processes them.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "name": "DeployedAPI", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SecurityTags": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a0b07a86-9fd3-40ca-bb9b-fe83c6981deb", + "name": "SecurityTags", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines labels and properties used by a security engine.", + "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": "accessGroups", + "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": "Map of access groups.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "securityProperties", + "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": "Properties that apply to the referenceable.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "securityLabels", + "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": "Labels that apply to the referenceable.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ReferenceData": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "55e5ae33-39c6-4834-9d05-ef0ae4e0163b", + "name": "ReferenceData", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An asset that contains trusted values for use as a reference.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CalculatedValue": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4814bec8-482d-463d-8376-160b0358e139", + "name": "CalculatedValue", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A field within a schema that is calculated via the formula and query targets rather than stored.", + "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": "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": "Expression to create the value.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ApplicationServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "19196efb-2706-47bf-8e51-e8ba5b36d033", + "name": "ApplicationServer", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server that hosts applications.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "PolicyAdministrationPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4f13baa3-31b3-4a85-985e-2abc784900b8", + "name": "PolicyAdministrationPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where policies are maintained.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy administration point.", + "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 policy administration point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy administration point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy administration point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Task": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "2312b668-3670-4845-a140-ef88d5a6db0c", + "name": "Task", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A self-contained, short activity, typically for one or two people.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataValue": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ab253e31-3d8a-45a7-8592-24329a189b9e", + "name": "DataValue", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that this glossary term describes a data value.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CanonicalVocabulary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "33ad3da2-0910-47be-83f1-daee018a4c05", + "name": "CanonicalVocabulary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary that contains unique 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": "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 influence for this canonical glossary.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AuditLog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "449be034-6cc8-4f1b-859f-a8b9ff8ee7a1", + "name": "AuditLog", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of related audit log records.", + "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": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this audit log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of audit log records in the collection.", + "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": "Source of the audit log.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Template": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "25fad4a2-c2d6-440d-a5b1-e537881f84ee", + "name": "Template", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Marks the referenceable as a template for creating new objects.", + "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": "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": "Unique name of the template.", + "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 template and how/where it is used.", + "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 information that is useful to the consumer of the template.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "EnforcementPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f4ce104e-7430-4c30-863d-60f6af6394d9", + "name": "EnforcementPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A governance rule that ensures a required condition is true.", + "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", + "name": "int", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Qualified name of the enforcement point definition.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ContentCollectionManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "dbde6a5b-fc89-4b04-969a-9dc09a60ebd7", + "name": "ContentCollectionManager", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a software server capability as a manager of controlled documents and related media.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Confidence": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "25d8f8d5-2998-4983-b9ef-265f58732965", + "name": "Confidence", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the level of confidence that should be placed in the accuracy of related data items.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ae846797-d88a-4421-ad9a-318bf7c1fe6f", + "name": "ConfidenceLevel", + "description": "Defines the level of confidence to place in the accuracy of a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "AdHoc", + "description": "The data comes from an ad hoc process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Transactional", + "description": "The data comes from a transactional system so it may have a narrow scope." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Authoritative", + "description": "The data comes from an authoritative source." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Derived", + "description": "The data is derived from other data through an analytical process." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data comes from an obsolete source and must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidence level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "levelIdentifier", + "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the confidence level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "Defined confidence level for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudProvider": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a2bfdd08-d0a8-49db-bc97-7f2406281046", + "name": "CloudProvider", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A host supporting cloud services.", + "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": "providerName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 cloud provider.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "name": "Host", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "FileSystem": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "cab5ba1d-cfd3-4fca-857d-c07711fc4157", + "name": "FileSystem", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A capability that supports a store of files organized into a hierarchy of file folders.", + "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": "format", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 file system.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "encryption", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of encryption used on the filesystem (if any).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "IncidentClassifierSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "361158c0-ade1-4c92-a6a7-64f7ac39b87d", + "name": "IncidentClassifierSet", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of incident classifiers.", + "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": "incidentClassifierCategory", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 category of classifiers used to set the incidentClassifiers in IncidentReport.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DatabaseServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "6bb58cc9-ed9e-4f75-b2f2-6d308554eb52", + "name": "DatabaseServer", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Identifies a server as one that manages one or more databases.", + "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": "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": "Source of the database software.", + "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 database server.", + "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": "softwareVersion", + "attributeDescription": "Deprecated attribute. Use the softwareVersion attribute to define the version number of database server software.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "softwareVersion", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 database server software.", + "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 database server.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "Impact": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3a6c4ba7-3cc5-48cd-8952-a50a92da016d", + "name": "Impact", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the severity of a situation on the attach entity.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "5b905856-90ec-4944-80c4-0d42bcad484a", + "name": "ImpactSeverity", + "description": "Defines the severity of the impact that a situation has.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Low", + "description": "The impact is low." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Medium", + "description": "The impact is medium." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "High", + "description": "The impact is high." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another impact level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + } + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "severityIdentifier", + "attributeDescription": "Deprecated attribute. Use the severityIdentifier attribute to describe the severity level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "severityIdentifier", + "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": "Defined level of severity for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "severityIdentifier", + "attributeDescription": "Deprecated attribute. Use the severityIdentifier attribute to describe the severity level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "NotificationManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3e7502a7-396a-4737-a106-378c9c94c105", + "name": "NotificationManager", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a server capability that is distributing events from a topic to its subscriber list.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ServerPurpose": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Adds more detail about the purpose of a deployed instance of IT infrastructure.", + "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": "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": [ + "StewardshipServer", + "Webserver", + "RepositoryProxy", + "ApplicationServer", + "DatabaseServer", + "MetadataServer", + "GovernanceDaemon", + "IntegrationServer" + ] + }, + "ExceptionLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "4756a6da-e0c2-4e81-b9ab-99df2f735eec", + "name": "ExceptionLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing exceptions.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "WorkflowEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "37a6d212-7c4a-4a82-b4e2-601d4358381c", + "name": "WorkflowEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of running a mixture of human and automated tasks as part of a workflow process.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MetadataServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "74a256ad-4022-4518-a446-c65fe082d4d3", + "name": "MetadataServer", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server hosting a metadata collection.", + "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": "format", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 supported metadata.", + "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 metadata server.", + "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 server.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "SoftwarePackageManifest": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e328ae6e-0b16-4490-9883-c953b4258841", + "name": "SoftwarePackageManifest", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a collection of software packages.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GlossaryProject": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "43be51a9-2d19-4044-b399-3ba36af10929", + "name": "GlossaryProject", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a project that is defining new glossary terms and categories or maintaining an existing glossary.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "name": "Project", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Campaign": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "41437629-8609-49ef-8930-8c435c912572", + "name": "Campaign", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A long-term strategic initiative that is implemented through multiple related projects.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConceptBeadAttributeCoverage": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f8b60afe-ddef-4b6f-9628-82ebfff34d65", + "name": "ConceptBeadAttributeCoverage", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the coverage category of a concept bead attribute.", + "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": "coverageCategory", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2c0ac237-e02e-431a-89fd-3107d94d4007", + "name": "ConceptModelAttributeCoverageCategory", + "description": "Describes the type of attribute - this is used in scoping the model.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "UniqueIdentifier", + "description": "The attribute uniquely identifies the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Identifier", + "description": "The attribute is a good indicator of the identity of the concept bead but not guaranteed to be unique." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "CoreDetail", + "description": "The attribute provides information that is typically required by all of the consumers of the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ExtendedDetail", + "description": "The attribute contains supplementary information that is of interest to specific consumers of the concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of role that the attribute plays as part of the concept bead.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea", + "name": "ConceptBeadAttribute", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MeteringLogFile": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "5ceb0c07-4271-4910-9e24-b0894f395d93", + "name": "MeteringLogFile", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing resource use events.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "name": "DataFile", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyDecisionPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "bf521975-bfec-4115-a8e3-ed0fee7d4a43", + "name": "PolicyDecisionPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where policies are evaluated for a specific situation.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy decision point.", + "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 policy decision point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy decision point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy decision point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceDaemon": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "7815f222-529d-4902-8f0b-e37cbc779885", + "name": "GovernanceDaemon", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "A server dedicated to managing activity relating to governance 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "ProcessingState": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "261fb0aa-b884-4ee8-87ea-a60510e9751d", + "name": "ProcessingState", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Stores processing state information used by various SoftwareCapabilities.", + "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": "syncDatesByKey", + "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": "Collection of synchronization dates identified by a key", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "name": "SoftwareCapability", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AnalyticsEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "1a0dc6f6-7980-42f5-98bd-51e56543a07e", + "name": "AnalyticsEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of running analytics models using data from one or more 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ExceptionBacklog": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "b3eceea3-aa02-4d84-8f11-da4953e64b5f", + "name": "ExceptionBacklog", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A collection of exceptions that need to be resolved", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "process", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 automated process that processes this exception backlog.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Notes on usage, purpose and type of exception backlog.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 person or team responsible for this exception backlog.", + "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": "Source of the exception backlog.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "DataVirtualizationEngine": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "03e25cd0-03d7-4d96-b28b-eed671824ed6", + "name": "DataVirtualizationEngine", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An engine capable of creating new data sets by dynamically combining data from one or more data stores or 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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "name": "Engine", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Ownership": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "8139a911-a4bd-432b-a9f4-f6d11c511abe", + "name": "Ownership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Who is responsible for making decisions on the management and governance of this element.", + "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": "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": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Identifier of the owner.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "ownerTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element that describes the owner.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "ownerPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property from the element used to identify the owner.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "IntegrationServer": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "c165b760-d9ab-47ac-a2ee-7854ec74605a", + "name": "IntegrationServer", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "superType": { + "headerVersion": 1, + "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", + "name": "ServerPurpose", + "status": "ACTIVE_TYPEDEF" + }, + "description": "Identifies a server that exchanges data between between other servers.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "name": "ITInfrastructure", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": [ + { + "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 software deployed - such as product name.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "subTypeNames": null + }, + "ActivityDescription": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "317f0e52-1548-41e6-b90c-6ae5e6c53fed", + "name": "ActivityDescription", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that this glossary term describes an activity.", + "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": "activityType", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "af7e403d-9865-4ebb-8c1a-1fd57b4f4bca", + "name": "ActivityType", + "description": "Different types of activities.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Operation", + "description": "Normal processing." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Action", + "description": "A requested or required change." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Task", + "description": "A piece of work for a person, organization or engine." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Process", + "description": "A sequence of tasks." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Project", + "description": "An organized activity to achieve a specific goal." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of activity." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Classification of the activity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PrimeWord": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "3ea1ea66-8923-4662-8628-0bacef3e9c5f", + "name": "PrimeWord", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes a primary noun, used in naming standards.", + "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", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "EditingGlossary": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "173614ba-c582-4ecc-8fcc-cde5fb664548", + "name": "EditingGlossary", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A temporary glossary holding glossary content that is being edited.", + "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": "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 updates.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "name": "Glossary", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AssetZoneMembership": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "a1c17a86-9fd3-40ca-bb9b-fe83c6981deb", + "name": "AssetZoneMembership", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the asset's membership of the governance zones.", + "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": "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": "ACTIVE_ATTRIBUTE", + "attributeDescription": "List of governance zones for the asset.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "896d14c2-7522-4f6c-8519-757711943fe6", + "name": "Asset", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PrimaryKey": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "b239d832-50bd-471b-b17a-15a335fc7f40", + "name": "PrimaryKey", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A uniquely identifying relational column.", + "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": "keyPattern", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", + "name": "KeyPattern", + "description": "Defines the type of identifier used for an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "LocalKey", + "description": "Unique key allocated and used within the scope of a single system." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "RecycledKey", + "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "NaturalKey", + "description": "Key derived from an attribute of the entity, such as email address, passport number." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "MirrorKey", + "description": "Key value copied from another system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "AggregateKey", + "description": "Key formed by combining keys from multiple systems." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "CallersKey", + "description": "Key from another system can bey used if system name provided." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "StableKey", + "description": "Key value will remain active even if records are merged." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another key pattern." + } + ] + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Type of primary key.", + "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 primary key.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "name": "RelationalColumn", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "AbstractConcept": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "9d725a07-4abf-4939-a268-419d200b69c2", + "name": "AbstractConcept", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies that this glossary term describes an abstract concept.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-01-01T13:42:11.090+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MetamodelInstance": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "07bd0820-6b14-43b0-a625-2c89f2beb93a", + "name": "MetamodelInstance", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the element from a metadata model that this element embodies.", + "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": "metamodelElementGUID", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Element in the metadata model that the attached element embodies.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", + "name": "DesignModelElement", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Memento": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "ecdcd472-6701-4303-8dec-267bcb54feb9", + "name": "Memento", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An element whose real-world counterpart has been deleted or moved to offline archived.", + "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": "archiveDate", + "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": "Timestamp when the archive occurred or was detected.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveUser", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 user that performed the archive - or detected the archive.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveProcess", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 process that performed the archive - or detected the archive.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveService", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 service that created this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveMethod", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 method that created this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "archiveProperties", + "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 to locate the real-world counterpart in the archive.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceClassificationSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "d92b7f31-c92d-418d-b345-ea45bb3f73f5", + "name": "GovernanceClassificationSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the set of levels that are used within a specific governance classification.", + "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 of the governance domain that recognizes this set of levels.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classificationName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 this set of levels is used.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "classificationPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property in the classification where this value is used.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SubjectArea": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "480e6993-35c5-433a-b50b-0f5c4063fb5d", + "name": "SubjectArea", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies an element as part of a subject area definition.", + "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 subject area.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceMeasurementsResultsDataSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "789f2e89-accd-4489-8eca-dc43b432c022", + "name": "GovernanceMeasurementsResultsDataSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A data file containing measurements for a governance metric.", + "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 use of the data set for governance metrics.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "1449911c-4f44-4c22-abc0-7540154feefb", + "name": "DataSet", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ConsolidatedDuplicate": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e40e80d7-5a29-482c-9a88-0dc7251f08de", + "name": "ConsolidatedDuplicate", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "An element that has be formed by combining the properties, classifications and relationships from multiple duplicate entities.", + "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": "statusIdentifier", + "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": "Status of the consolidated entity. Value defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this consolidated entity.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "Source of the duplicate detection.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information for the steward(s) relating to the survivorship rules and consolidation decisions.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "SecureLocation": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e7b563c0-fcdd-4ba7-a046-eecf5c4638b8", + "name": "SecureLocation", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A location that protects the assets in its care.", + "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 security at this location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Level of security at this location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Modifier": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "f662c95a-ae3f-4f71-b442-78ab70f2ee47", + "name": "Modifier", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes modifying noun or adverb, used in naming standards.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2018-01-18T22:04:00.008+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Incomplete": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "078432fb-a889-4a51-8ebe-9797becea9f1", + "name": "Incomplete", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Accompanies a partial, incomplete Referenceable.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "GovernanceStatusSet": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "c13261bb-0cfe-4540-a44a-cca2b14f412b", + "name": "GovernanceStatusSet", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the set of levels that are used to describe the status of a governance element.", + "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": "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 set of levels.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "name": "Collection", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "CloudPlatform": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "1b8f8511-e606-4f65-86d3-84891706ad12", + "name": "CloudPlatform", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A software server platform supporting cloud services.", + "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 cloud platform.", + "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 cloud platform.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "ba7c7884-32ce-4991-9c41-9778f1fec6aa", + "name": "SoftwareServerPlatform", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "MasterDataManager": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "5bdad12e-57e7-4ff9-b7be-5d869e77d30b", + "name": "MasterDataManager", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A system that manages the consolidation and reconciliation of master data - typically people, organizations, products and accounts.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "UserAccessDirectory": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "29c98cf7-32b3-47d2-a411-48c1c9967e6d", + "name": "UserAccessDirectory", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A system that stores the access rights and groups for users (people and automated processes).", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "InstanceMetadata": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "e6d5c097-a5e9-4bc4-a614-2506276059af", + "name": "InstanceMetadata", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines a data field that contains metadata for the row/record/object.", + "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": "typeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Open metadata type for the instance metadata (if applicable).", + "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 metadata.", + "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 describing properties, valid values or associated processing for this metadata.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", + "name": "SchemaElement", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "FixedLocation": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "bc111963-80c7-444f-9715-946c03142dd2", + "name": "FixedLocation", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "A location linked to a physical place.", + "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": "address", + "attributeType": { + "class": "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": "Postal address of the location (Deprecated).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "postalAddress", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Postal address of the location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "mapProjection", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 scheme used to define the meaning of the coordinates.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "timezone", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Timezone for the location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "coordinates", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Geographical coordinates of this location.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "name": "Location", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "ElementSupplement": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "58520015-ce6e-47b7-a1fd-864030544819", + "name": "ElementSupplement", + "status": "ACTIVE_TYPEDEF", + "version": 1, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies a glossary term that is being used to supplement asset descriptions.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "createTime": "2020-04-30T15:42:46.992+00:00", + "validInstanceStatusList": [ + "ACTIVE", + "DELETED" + ], + "initialStatus": "ACTIVE", + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "name": "GlossaryTerm", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "PolicyInformationPoint": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "2058ab6f-ddbf-45f9-9136-47354544e282", + "name": "PolicyInformationPoint", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Describes the capability where additional information used in a policy decision are stored.", + "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", + "createdBy": "ODPi Egeria", + "updatedBy": "ODPi 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": "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": "Unique name of the policy information point.", + "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 policy information point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "pointType", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Descriptive type information about the policy information point.", + "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": "pointType", + "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy information point.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Anchors": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "aa44f302-2e43-4669-a1e7-edaae414fc6e", + "name": "Anchors", + "status": "ACTIVE_TYPEDEF", + "version": 2, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Identifies the anchor entities for an element that is part of a large composite object such as an asset.", + "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": "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": "ACTIVE_ATTRIBUTE", + "attributeDescription": "The unique identifier of the referenceable that this element is directly or indirectly anchored to.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "name": "OpenMetadataRoot", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": true + }, + "inheritedAttributes": null, + "subTypeNames": null + }, + "Confidentiality": { + "classificationDef": { + "class": "ClassificationDef", + "headerVersion": 1, + "guid": "742ddb7d-9a4a-4eb5-8ac2-1d69953bd2b6", + "name": "Confidentiality", + "status": "ACTIVE_TYPEDEF", + "version": 3, + "versionName": "1.0", + "category": "CLASSIFICATION_DEF", + "description": "Defines the level of confidentiality of related data items.", + "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": "stewardTypeName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 element used to identify the steward.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "notes", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Information relating to the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "steward", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "PRIMITIVE", + "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", + "name": "string", + "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Person responsible for maintaining this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "level", + "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": "levelIdentifier", + "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the confidentiality level of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidence", + "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 confidence in the classification (0=none -> 100=excellent).", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "statusIdentifier", + "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", + "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": "Source of the classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "stewardPropertyName", + "attributeType": { + "class": "PrimitiveDef", + "headerVersion": 1, + "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 property used to identify the steward.", + "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "attributeStatus": "DEPRECATED_ATTRIBUTE", + "replacedByAttribute": "statusIdentifier", + "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "levelIdentifier", + "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": "Defined confidentiality level for this classification. Values defined by GovernanceClassificationLevel.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + }, + { + "headerVersion": 1, + "attributeName": "confidentialityLevel", + "attributeType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "abc48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "ConfidentialityLevel", + "description": "Defines how confidential a data item is.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Internal", + "description": "The data should not be exposed outside of this organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Confidential", + "description": "The data should be protected and only shared with people with a need to see it." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Sensitive", + "description": "The data is sensitive and inappropriate use may adversely impact the data subject." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Restricted", + "description": "The data is very valuable and must be restricted to a very small number of people." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidentially level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + } + }, + "attributeStatus": "ACTIVE_ATTRIBUTE", + "attributeDescription": "Pre-defined level for this classification.", + "valuesMinCount": 0, + "valuesMaxCount": 1, + "attributeCardinality": "AT_MOST_ONE", + "unique": false, + "indexable": true + } + ], + "validEntityDefs": [ + { + "headerVersion": 1, + "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "name": "Referenceable", + "status": "ACTIVE_TYPEDEF" + } + ], + "propagatable": false + }, + "inheritedAttributes": null, + "subTypeNames": null + } + }, + "enums": { + "MembershipStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a3bdb2ac-c28e-4e5a-8ab7-76aa01038832", + "name": "MembershipStatus", + "description": "Defines the provenance and confidence that a member belongs in a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Discovered", + "description": "The membership was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Assigned", + "description": "The membership was proposed by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Imported", + "description": "The membership was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Validated", + "description": "The membership created by an automated process has been validated and approved by an expert curator." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Deprecated", + "description": "The membership should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "Obsolete", + "description": "The membership must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another membership status." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The membership origin is unknown." + } + }, + "BusinessCapabilityType": { + "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." + } + }, + "ToDoStatus": { + "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." + } + ] + }, + "DiscoveryServiceRequestStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b2fdeddd-24eb-4e9c-a2a4-2693828d4a69", + "name": "DiscoveryServiceRequestStatus", + "description": "Defines the progress or completion of a requested discovery service.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Activating", + "description": "Discovery service is being initialized in the discovery engine." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "InProgress", + "description": "Discovery service is executing." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Failed", + "description": "Discovery service has failed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Completed", + "description": "Discovery service has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Other", + "description": "Discovery service has a status that is not covered by this enum." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery service status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery service is waiting to execute." + } + }, + "GovernanceDomain": { + "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." + } + ] + }, + "DataClassAssignmentStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2611892f-0527-478f-8843-a3aa2b9abb47", + "name": "DataClassAssignmentStatus", + "description": "Defines the provenance and confidence of a data class assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The data class assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The data class assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The data class assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The data class assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The data class assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data class assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another data class assignment status." + } + ] + }, + "DiscoveryRequestStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ecb48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "DiscoveryRequestStatus", + "description": "Defines the progress or completion of a discovery request.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "InProgress", + "description": "Discovery request is executing." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Failed", + "description": "Discovery request has failed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Completed", + "description": "Discovery request has completed successfully." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Unknown", + "description": "Discovery request status is unknown." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Waiting", + "description": "Discovery request is waiting to execute." + } + }, + "StarRating": { + "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." + } + ] + }, + "ImpactSeverity": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "5b905856-90ec-4944-80c4-0d42bcad484a", + "name": "ImpactSeverity", + "description": "Defines the severity of the impact that a situation has.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Low", + "description": "The impact is low." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Medium", + "description": "The impact is medium." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "High", + "description": "The impact is high." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another impact level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the impact's severity on this data." + } + }, + "Endianness": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "e5612c3a-49bd-4148-8f67-cfdf145d5fd8", + "name": "Endianness", + "description": "Defines the sequential order in which bytes are arranged into larger numerical values when stored in memory or when transmitted over digital links.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BigEndian", + "description": "Bits or bytes order from the big end." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "LittleEndian", + "description": "Bits or bytes ordered from the little end." + } + ] + }, + "AnnotationStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", + "name": "AnnotationStatus", + "description": "Defines the status of an annotation.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "New", + "description": "The annotation is new." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewed", + "description": "The annotation has been reviewed by a steward." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Approved", + "description": "The annotation has been approved." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Actioned", + "description": "The request has been actioned." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Invalid", + "description": "The annotation is invalid or incorrect." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Ignore", + "description": "The annotation should be ignored." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another status." + } + ] + }, + "ServerAssetUseType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "09439481-9489-467c-9ae5-178a6e0b6b5a", + "name": "ServerAssetUseType", + "description": "Defines how a software server capability may use an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Governs", + "description": "The software server capability provides management or oversight of the asset." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Maintains", + "description": "The software server capability keeps the asset up-to-date." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Uses", + "description": "The software server capability consumes the content of the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Owns", + "description": "The software server capability is accountable for the maintenance and protection of the asset." + } + }, + "ConfidenceLevel": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "ae846797-d88a-4421-ad9a-318bf7c1fe6f", + "name": "ConfidenceLevel", + "description": "Defines the level of confidence to place in the accuracy of a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "AdHoc", + "description": "The data comes from an ad hoc process." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Transactional", + "description": "The data comes from a transactional system so it may have a narrow scope." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Authoritative", + "description": "The data comes from an authoritative source." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Derived", + "description": "The data is derived from other data through an analytical process." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The data comes from an obsolete source and must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidence level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the confidence level of this data." + } + }, + "DuplicateType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2f6a3dc1-aa98-4b92-add4-68de53b7369c", + "name": "DuplicateType", + "description": "Defines if the duplicates are peers or one is a consolidated duplicate.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Peer", + "description": "The duplicates are peers." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Consolidated", + "description": "One duplicate has been constructed from the other (ands its peers)." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another duplicate type." + } + ] + }, + "OwnerType": { + "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." + } + ] + }, + "KeyPattern": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", + "name": "KeyPattern", + "description": "Defines the type of identifier used for an asset.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "LocalKey", + "description": "Unique key allocated and used within the scope of a single system." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "RecycledKey", + "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "NaturalKey", + "description": "Key derived from an attribute of the entity, such as email address, passport number." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "MirrorKey", + "description": "Key value copied from another system." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "AggregateKey", + "description": "Key formed by combining keys from multiple systems." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "CallersKey", + "description": "Key from another system can bey used if system name provided." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "StableKey", + "description": "Key value will remain active even if records are merged." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another key pattern." + } + ] + }, + "CommentType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "06d5032e-192a-4f77-ade1-a4b97926e867", + "name": "CommentType", + "description": "Descriptor for a comment that indicated its intent.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "GeneralComment", + "description": "General comment." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Question", + "description": "A question." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Answer", + "description": "An answer to a previously asked question." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Suggestion", + "description": "A suggestion for improvement." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Experience", + "description": "An account of an experience." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "None of the above." + } + ] + }, + "SolutionPortDirection": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "4879c96e-26c7-48af-ba92-8277632be733", + "name": "SolutionPortDirection", + "description": "Defines the direction of flow of information through a solution port.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The direction of flow is unknown." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Output", + "description": "The process is producing information through this port." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Input", + "description": "The process is consuming information through this port." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "InOut", + "description": "The process has a call interface attached to this port." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "OutIn", + "description": "The process is issuing a call to an external API through this port." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another direction." + } + ] + }, + "MediaType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "9548390c-69f5-4dc6-950d-6fdffb257b56", + "name": "MediaType", + "description": "Defines the type of media.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Image", + "description": "The media is an image." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Audio", + "description": "The media is an audio recording." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Document", + "description": "The media is a text document, probably rich text." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Video", + "description": "The media is a video recording." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of media, probably not supported." + } + ] + }, + "MediaUsage": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c6861a72-7485-48c9-8040-876f6c342b61", + "name": "MediaUsage", + "description": "Defines how a related media reference should be used.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Icon", + "description": "Provides a small image to represent the asset in tree views and graphs." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Thumbnail", + "description": "Provides a small image about the asset that can be used in lists." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Illustration", + "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "UsageGuidance", + "description": "Provides guidance to a person on how to use the asset." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another usage." + } + ] + }, + "RetentionBasis": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "de79bf78-ecb0-4fd0-978f-ecc2cb4ff6c7", + "name": "RetentionBasis", + "description": "Defines the retention requirements associated with a data item.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the retention requirements for this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Temporary", + "description": "This data is temporary." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "ProjectLifetime", + "description": "The data is needed for the lifetime of the referenced project." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "TeamLifetime", + "description": "The data is needed for the lifetime of the referenced team." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ContractLifetime", + "description": "The data is needed for the lifetime of the referenced contract." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "RegulatedLifetime", + "description": "The retention period for the data is defined by the referenced regulation." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "TimeBoxedLifetime", + "description": "The data is needed for the specified time." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another basis for determining the retention requirement." + } + ] + }, + "DataItemSortOrder": { + "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." + } + ] + }, + "GovernanceClassificationStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", + "name": "GovernanceClassificationStatus", + "description": "Defines the status values of a governance action classification.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The classification assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The classification assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The classification assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The classification assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The classification assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The classification assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another classification assignment status." + } + ] + }, + "ProcessContainmentType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1bb4b908-7983-4802-a2b5-91b095552ee9", + "name": "ProcessContainmentType", + "description": "The containment relationship between two processes.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "OWNED", + "description": "The parent process owns the child process in the relationship, such that if the parent is removed the child should also be removed. A child can have at most one such parent." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "USED", + "description": "The child process is simply used by the parent. A child process can have many such relationships to parents." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "OTHER", + "description": "None of the above." + } + ] + }, + "PermittedSynchronization": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", + "name": "PermittedSynchronization", + "description": "Defines the synchronization rules between a third party technology and open metadata.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "BothDirections", + "description": "Metadata exchange is permitted in both directions." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "ToThirdParty", + "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "FromThirdParty", + "description": "The third party technology is logically upstream and is publishing metadata to open metadata." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another synchronization rule." + } + ] + }, + "OrderBy": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "1d412439-4272-4a7e-a940-1065f889fc56", + "name": "OrderBy", + "description": "Defines the sequencing for a collection.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Name", + "description": "Order by name property." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Owner", + "description": "Order by owner property." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "DateAdded", + "description": "Order by date added to the metadata collection." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "DateUpdated", + "description": "Order by date that the asset was updated." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "DateCreated", + "description": "Order by date that the asset was created." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Order by another property." + } + ] + }, + "LatestChangeTarget": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a0b7d7a0-4af5-4539-9b81-cbef52d8cc5d", + "name": "LatestChangeTarget", + "description": "Defines the type of repository element that has changed.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "EntityStatus", + "description": "The status of the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "EntityProperty", + "description": "A property in the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "EntityClassification", + "description": "A classification attached to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "EntityRelationship", + "description": "A relationship linking the anchor entity to an attachment has changed." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Attachment", + "description": "An entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "AttachmentStatus", + "description": "The status of an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 6, + "value": "AttachmentProperty", + "description": "A property in an entity attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 7, + "value": "AttachmentClassification", + "description": "A classification attached to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 8, + "value": "AttachmentRelationship", + "description": "A relationship linking to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of change." + } + ] + }, + "CommunityMembershipType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "b0ef45bf-d12b-4b6f-add6-59c14648d750", + "name": "CommunityMembershipType", + "description": "Type of membership to a community.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Contributor", + "description": "Participant in the community." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Administrator", + "description": "Administrator of the community." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Leader", + "description": "Leader of the community." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Observer", + "description": "Observer of the community." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role in the community." + } + ] + }, + "AssetOwnerType": { + "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." + } + ] + }, + "TermRelationshipStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "42282652-7d60-435e-ad3e-7cfe5291bcc7", + "name": "TermRelationshipStatus", + "description": "Defines the confidence in the assigned relationship.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Draft", + "description": "The term relationship is in development." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Active", + "description": "The term relationship is approved and in use." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deprecated", + "description": "The term relationship should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Obsolete", + "description": "The term relationship must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term relationship status." + } + ] + }, + "ActivityType": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "af7e403d-9865-4ebb-8c1a-1fd57b4f4bca", + "name": "ActivityType", + "description": "Different types of activities.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Operation", + "description": "Normal processing." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Action", + "description": "A requested or required change." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Task", + "description": "A piece of work for a person, organization or engine." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Process", + "description": "A sequence of tasks." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Project", + "description": "An organized activity to achieve a specific goal." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of activity." + } + ] + }, + "ConfidentialityLevel": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "abc48ca2-4d29-4de9-99a1-bc4db9816d68", + "name": "ConfidentialityLevel", + "description": "Defines how confidential a data item is.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Internal", + "description": "The data should not be exposed outside of this organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Confidential", + "description": "The data should be protected and only shared with people with a need to see it." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Sensitive", + "description": "The data is sensitive and inappropriate use may adversely impact the data subject." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Restricted", + "description": "The data is very valuable and must be restricted to a very small number of people." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another confidentially level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "The data is public information." + } + }, + "TermAssignmentStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "c8fe36ac-369f-4799-af75-46b9c1343ab3", + "name": "TermAssignmentStatus", + "description": "Defines the provenance and confidence of a term assignment.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Discovered", + "description": "The term assignment was discovered by an automated process." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Proposed", + "description": "The term assignment was proposed by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Imported", + "description": "The term assignment was imported from another metadata system." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Validated", + "description": "The term assignment has been validated and approved by a subject matter expert." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Deprecated", + "description": "The term assignment should no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 5, + "value": "Obsolete", + "description": "The term assignment must no longer be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another term assignment status." + } + ] + }, + "OperationalStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", + "name": "OperationalStatus", + "description": "Defines whether a component is operational.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Disabled", + "description": "The component is not operational." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Enabled", + "description": "The component is operational." + } + ] + }, + "ConceptModelDecoration": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a97d9167-7dd6-4dea-a8cf-c73c57a0f470", + "name": "ConceptModelDecoration", + "description": "Describes the type of relationship end.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Aggregation", + "description": "The relationship links an independent concept bead to a collection concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Composition", + "description": "The relationship links a sub-part to a composite." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Extension", + "description": "The relationship links an extension to a base concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "None", + "description": "The relationship links two concept beads together." + } + }, + "CrowdSourcingRole": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "0ded50c2-17cc-4ecf-915e-908e66dbb27f", + "name": "CrowdSourcingRole", + "description": "Type of contributor to new information and/or assets.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Proposer", + "description": "Actor that creates the initial version." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Reviewer", + "description": "Actor that provided feedback." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Supporter", + "description": "Actor that agrees with the definition." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Approver", + "description": "Actor that declares the definition should be used." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another role." + } + ] + }, + "ConceptModelAttributeCoverageCategory": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "2c0ac237-e02e-431a-89fd-3107d94d4007", + "name": "ConceptModelAttributeCoverageCategory", + "description": "Describes the type of attribute - this is used in scoping the model.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "UniqueIdentifier", + "description": "The attribute uniquely identifies the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Identifier", + "description": "The attribute is a good indicator of the identity of the concept bead but not guaranteed to be unique." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "CoreDetail", + "description": "The attribute provides information that is typically required by all of the consumers of the concept bead." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "ExtendedDetail", + "description": "The attribute contains supplementary information that is of interest to specific consumers of the concept bead." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unknown", + "description": "The attribute's coverage category is unknown - this is the default." + } + }, + "GovernanceActionStatus": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", + "name": "GovernanceActionStatus", + "description": "Defines the current execution status of a governance action.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Requested", + "description": "The governance action has been created and is pending." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Approved", + "description": "The governance action is approved to run." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Waiting", + "description": "The governance action is waiting for its start time or the right conditions to run." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Activating", + "description": "The governance service for the governance action is being initialized in the governance engine." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "InProgress", + "description": "The governance engine is running the associated governance service for the governance action." + }, + { + "headerVersion": 1, + "ordinal": 10, + "value": "Actioned", + "description": "The governance service for the governance action has successfully completed processing." + }, + { + "headerVersion": 1, + "ordinal": 11, + "value": "Invalid", + "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." + }, + { + "headerVersion": 1, + "ordinal": 12, + "value": "Ignored", + "description": "The governance action has not been run because a different governance action was chosen." + }, + { + "headerVersion": 1, + "ordinal": 13, + "value": "Failed", + "description": "The governance service for the governance action failed to execute." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Undefined or unknown governance action status." + } + ] + }, + "ContactMethodType": { + "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." + } + ] + }, + "CriticalityLevel": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "22bcbf49-83e1-4432-b008-e09a8f842a1e", + "name": "CriticalityLevel", + "description": "Defines how important a data item is to the organization.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Marginal", + "description": "The data is of minor importance to the organization." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Important", + "description": "The data is important to the running of the organization." + }, + { + "headerVersion": 1, + "ordinal": 3, + "value": "Critical", + "description": "The data is critical to the operation of the organization." + }, + { + "headerVersion": 1, + "ordinal": 4, + "value": "Catastrophic", + "description": "The data is so important that its loss is catastrophic putting the future of the organization in doubt." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another criticality level." + } + ], + "defaultValue": { + "headerVersion": 1, + "ordinal": 0, + "value": "Unclassified", + "description": "There is no assessment of the criticality of this data." + } + }, + "LatestChangeAction": { + "class": "EnumDef", + "headerVersion": 1, + "version": 1, + "versionName": "1.0", + "category": "ENUM_DEF", + "guid": "032d844b-868f-4c4a-bc5d-81f0f9704c4d", + "name": "LatestChangeAction", + "description": "Defines the type of change that was made to a repository instance.", + "elementDefs": [ + { + "headerVersion": 1, + "ordinal": 0, + "value": "Created", + "description": "The target element has been created." + }, + { + "headerVersion": 1, + "ordinal": 1, + "value": "Updated", + "description": "The properties of the target element have been changed." + }, + { + "headerVersion": 1, + "ordinal": 2, + "value": "Deleted", + "description": "The target element has been deleted." + }, + { + "headerVersion": 1, + "ordinal": 99, + "value": "Other", + "description": "Another type of action." + } + ] + }, + "IncidentReportStatus": { + "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." + } + ] + }, + "PortType": { + "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." + } + ] + } + }, + "entityTypeGUIDToName": { + "6403a704-aad6-41c2-8e08-b9525c006f85": "PropertyFacet", + "251e443c-dee0-47fa-8a73-1a9d511915a0": "DivergentDuplicateAnnotation", + "27891e52-1255-4a33-98a2-377717a25334": "MetadataRepositoryService", + "b2605d2d-10cd-443c-b3e8-abf15fb051f0": "SetSchemaType", + "0b494819-28be-4604-b238-3af20963eea6": "SemanticAnnotation", + "fbe95779-1f3c-4ac6-aa9d-24963ff16282": "UserIdentity", + "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3": "NoteEntry", + "2df2069f-6475-400c-bf8c-6d2072a55d47": "SecurityService", + "759da11b-ebb6-4382-bdc9-72adc7c922db": "IntegrationConnector", + "a32316b8-dc8c-48c5-b12b-71c1b2a080bf": "Referenceable", + "a2a5cb74-f8e0-470f-be71-26b7e32166a6": "DivergentAttachmentClassificationAnnotation", + "962de053-ab51-40eb-b843-85b98013f5ca": "DataFileCollection", + "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C": "Port", + "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c": "KubernetesCluster", + "fa6de61d-98cb-48c4-b21f-ab7186235fd4": "InformationSupplyChain", + "9062df4c-9f4a-4012-a67a-968d7a3f4bcf": "DataProcessingPurpose", + "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0": "ExternalId", + "b463827c-c0a0-4cfb-a2b2-ddc63746ded4": "Document", + "e0430f59-f021-411a-9d81-883e1ff3f6f6": "Network", + "17bee904-5b35-4c81-ac63-871c615424a2": "KeystoreFile", + "f703a621-4078-4c07-ab22-e7c334b94235": "SuspectDuplicateAnnotation", + "fe30a033-8f86-4d17-8986-e6166fa24177": "SoftwareServerCapability", + "0921c83f-b2db-4086-a52c-0d10e52ca078": "Database", + "a13b409f-fd67-4506-8d94-14dfafd250a4": "StructSchemaType", + "88886b53-c839-48fa-bcfa-83ebcf8abbb5": "Agreement", + "d28c3839-bc6f-41ad-a882-5667e01fea72": "SubjectAreaDefinition", + "69055d10-51dc-4c2b-b21f-d76fad3f8ef3": "GovernanceProcedure", + "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2": "DivergentAttachmentValueAnnotation", + "042d9b5c-677e-477b-811f-1c39bf716759": "SecurityGroup", + "72e6473d-4ce0-4609-80a4-e6e949a7f520": "QualityAnnotation", + "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893": "MetadataRepositoryCohort", + "49990755-2faa-4a62-a1f3-9124b9c73df4": "ImplementationSnippet", + "4d7c43ec-983b-40e4-af78-6fb66c4f5136": "IntegrationGroup", + "69836cfd-39b8-460b-8727-b04e19210069": "DataItemOwner", + "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee": "GovernanceRole", + "b46cddb3-9864-4c5d-8a49-266b3fc95cb8": "APISchemaType", + "f96b5a32-42c1-4a74-8f77-70a81cec783d": "ProjectCharter", + "0c8a3673-04ef-406f-899d-e88de67f6176": "DataClassAnnotation", + "42cfccbf-cc68-4980-8c31-0faf1ee002d3": "SimpleDocumentType", + "b5cefb7e-b198-485f-a1d7-8e661012499b": "DocumentSchemaAttribute", + "68d7b905-6438-43be-88cf-5de027b4aaaf": "InformationView", + "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5": "BusinessOwner", + "786a6199-0ce8-47bf-b006-9ace1c5510e4": "ComplexSchemaType", + "4e7761e8-3969-4627-8f40-bfe3cde85a1d": "OpenMetadataRoot", + "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9": "GovernanceActionService", + "046a049d-5f80-4e5b-b0ae-f3cf6009b513": "LicenseType", + "248975ec-8019-4b8a-9caf-084c8b724233": "TabularSchemaType", + "114e9f8f-5ff3-4c32-bd37-a7eb42712253": "Connection", + "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3": "GovernanceControl", + "af6265e7-5f58-4a9c-9ae7-8d4284be62bd": "TabularFileColumn", + "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1": "InformationSupplyChainSegment", + "740f07dc-4ee8-4c2a-baba-efb55c73eb68": "RelationshipAdviceAnnotation", + "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced": "SchemaAnalysisAnnotation", + "3437fd1d-5098-426c-9b55-c94d1fc5dc0e": "LocationOwner", + "290a192b-42a7-449a-935a-269ca62cfdac": "GovernanceZone", + "27db26a1-ff66-4042-9932-ddc728b977b9": "VerificationPointDefinition", + "685f91fb-c74b-437b-a9b6-c5e557c6d3b2": "DataProcessingDescription", + "ba167b12-969f-49d3-8bea-d04228d9a44b": "APIParameterList", + "8145967e-bb83-44b2-bc8c-68112c6a5a06": "EmbeddedProcess", + "e507485b-9b5a-44c9-8a28-6967f7ff3672": "GlossaryCategory", + "829a648d-f249-455d-8127-aeafa021f832": "RegulationArticle", + "5be4ee8f-4d0c-45cd-a411-22a468950342": "EventSchemaAttribute", + "ac406bf8-e53e-49f1-9088-2af28bcbd285": "PersonRole", + "6bc727dc-e855-4979-8736-78ac3cfcd32f": "DataClass", + "f1c0af19-2729-4fac-996e-a7badff3c21c": "APIOperation", + "896d14c2-7522-4f6c-8519-757711943fe6": "Asset", + "09b2133a-f045-42cc-bb00-ee602b74c618": "ValidValueDefinition", + "92e20083-0393-40c0-a95b-090724a91ddc": "GovernanceActionType", + "9794f42f-4c9f-4fe6-be84-261f0a7de890": "HostCluster", + "f3f69251-adb1-4042-9d95-70082f95a028": "SoftwareService", + "2f278dfc-4640-4714-b34b-303e84e4fc40": "OpenDiscoveryService", + "e3c4293d-8846-4500-b0c0-197d73aba8b0": "Regulation", + "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9": "DatabaseManager", + "e6c049e2-56aa-4512-a634-20cd7085e534": "ArchiveService", + "6046bdf8-a37e-4bc4-b51d-325d8c31a96c": "GovernanceRepresentative", + "deaa5ca0-47a0-483d-b943-d91c76744e01": "Like", + "37156790-feac-4e1a-a42e-88858ae6f8e1": "DocumentStore", + "c85bea73-d7af-46d7-8a7e-cb745910b1df": "DataSourceMeasurementAnnotation", + "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea": "DataField", + "ba846a7b-2955-40bf-952b-2793ceca090a": "InformalTag", + "be650674-790b-487a-a619-0a9002488055": "OpenDiscoveryEngine", + "5caf954a-3e33-4cbd-b17d-8b8613bd2db8": "SchemaTypeChoice", + "82efa1fa-501f-4ac7-942c-6536c4a1cd61": "DataManager", + "36db26d5-aba2-439b-bc15-d62d373c5db6": "Team", + "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1": "GraphEdge", + "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3": "CrowdSourcingContributor", + "22c4e433-1b87-4446-840a-03f83d2dc113": "ServiceLevelObjective", + "6dfba6ce-e925-4281-880d-d04100c5b991": "DigitalServiceManager", + "36f66863-9726-4b41-97ee-714fd0dc6fe4": "Glossary", + "bb094b5e-0934-4d8b-8727-48eb5d241a46": "BusinessImperative", + "ea3b15af-ed0e-44f7-91e4-bdb299dd4976": "MetadataCollection", + "bead9aa4-214a-4596-8036-aa78395bbfb1": "EventSet", + "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea": "GovernanceProcess", + "a376a993-5f1c-4926-b74e-a15a38e1d55a": "ControlPointDefinition", + "fb60761f-7afd-4d3d-9efa-24bc85a7b22e": "ConnectorCategory", + "c403c109-7b6b-48cd-8eee-df445b258b33": "GovernanceDriver", + "20c45531-5d2e-4eb6-9a47-035cb1067b82": "TableDataSet", + "f7feb509-bce6-4989-a340-5dc7e3eec313": "ConceptBead", + "4aa47799-5128-4eeb-bd72-e357b49f8bfe": "SolutionBlueprint", + "201f48c5-4e4b-41dc-9c5f-0bc9742190cf": "ReferenceCodeTable", + "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9": "MetadataRepository", + "486af62c-dcfd-4859-ab24-eab2e380ecfd": "DeployedSoftwareComponent", + "81394f85-6008-465b-926e-b3fae4668937": "ITProfile", + "bff1f694-afd0-4829-ab11-50a9fbaf2f5f": "DataProfileAnnotation", + "2b3bed05-c227-47d7-87a3-139ab0568361": "RepositoryGovernanceEngine", + "3b7d1325-ec2c-44cb-8db0-ce207beb78cf": "GovernancePrinciple", + "77133161-37a9-43f5-aaa3-fd6d7ff92fdb": "BoundedSchemaType", + "50a61105-35be-4ee3-8b99-bdd958ed0685": "Organization", + "7f53928f-9148-4710-ad37-47633f33cb08": "DataProcessingAction", + "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15": "BusinessCapability", + "16d2c34a-43db-476b-93ae-6a2996f514ec": "Actor", + "578a3500-9ad3-45fe-8ada-e4e9572c37c8": "GovernanceDefinition", + "4d3a2b8d-9e2e-4832-b338-21c74e45b238": "GovernanceActionProcess", + "d8f33bd7-afa9-4a11-a8c7-07dcec83c050": "Process", + "5d74250a-57ca-4197-9475-8911f620a94e": "GovernanceActionEngine", + "13defd95-6452-4398-8382-e47f1a271eff": "ConceptBeadLink", + "2ccb2117-9cee-47ca-8150-9b3a543adcec": "CSVFile", + "14145458-f0d0-4955-8899-b8a2874708c9": "StorageVolume", + "718d4244-8559-49ed-ad5a-10e5c305a656": "SchemaElement", + "c5ce5499-9582-42ea-936c-9771fbd475f8": "MediaFile", + "92f7fe27-cd2f-441c-a084-156821aa5bca": "MetadataIntegrationService", + "b55c2740-2d41-4433-a099-596c8e9b7bf6": "QueryDataContainer", + "d804d406-ac74-4f92-9bde-2ba0793680ea": "ConceptBeadAttribute", + "f4fffcc0-d9eb-4bb9-8aff-0718932f689e": "Catalog", + "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e": "IncidentReport", + "bd96a997-8d78-42f6-adf7-8239bc98501c": "OperatingPlatform", + "b86cdded-1078-4e42-b6ba-a718c2c67f62": "DivergentValueAnnotation", + "baa608fa-510e-42d7-95cd-7c12fa37bb35": "JSONFile", + "9882b8aa-eba3-4a30-94c6-43117efd11cc": "DockerContainer", + "52505b06-98a5-481f-8a32-db9b02afabfc": "NamingStandardRule", + "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf": "GovernanceStrategy", + "97f9ffc9-e2f7-4557-ac12-925257345eea": "CertificationType", + "788957f7-a203-45bd-994d-0ab018275821": "DesignModelScope", + "183d2935-a950-4d74-b246-eac3664b5a9d": "ExternalGlossaryLink", + "747f8b86-fe7c-4c9b-ba75-979e093cc307": "RelatedMedia", + "ff4c8484-9127-464a-97fc-99579d5bc429": "LogFile", + "29100f49-338e-4361-b05d-7e4e8e818325": "Topic", + "081abe00-740e-4143-b0d5-a1f55450fc22": "OpenDiscoveryPipeline", + "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E": "PortImplementation", + "aa7c7884-32ce-4991-9c41-9778f1fec6aa": "SoftwareServer", + "578a3510-9ad3-45fe-8ada-e4e9572c37c8": "GovernanceOfficer", + "d81a0425-4e9b-4f31-bc1c-e18c3566da10": "TabularColumn", + "309dfc3c-663b-4732-957b-e4a084436314": "EventBroker", + "b893d6fc-642a-454b-beaf-809ee4dd876a": "AnnotationReview", + "8ef355d4-5cd7-4038-8337-62671b088920": "BareMetalComputer", + "a7defa41-9cfa-4be5-9059-359022bb016d": "GovernancePolicy", + "c19746ac-b3ec-49ce-af4b-83348fc55e07": "Infrastructure", + "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70": "CohortRegistryStore", + "e87ff806-bb9c-4c5d-8106-f38f2dd21037": "EnforcementPointDefinition", + "978e7674-8231-4158-a4e3-a5ccdbcad60e": "RepositoryGovernanceService", + "1a5e159b-913a-43b1-95fe-04433b25fca9": "SchemaAttribute", + "a9f7d15d-b797-450a-8d56-1ba55490c019": "DerivedRelationalColumn", + "9bbae94d-e109-4c96-b072-4f97123f04fd": "NetworkGateway", + "5b7f340e-7dc9-45c0-a636-c20605147c94": "ApplicationService", + "520ebb91-c4eb-4d46-a3b1-974875cdcf0d": "LiteralSchemaType", + "f0438d80-6eb9-4fac-bcc1-5efee5babcfc": "RelationalColumnType", + "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23": "DataSourcePhysicalStatusAnnotation", + "bd4c85d0-d471-4cd2-a193-33b0387a19fd": "MapSchemaType", + "10277b13-509c-480e-9829-bc16d0eafc53": "APIParameter", + "bf17143d-8605-48c2-ba80-64c2ac8f8379": "DesignModel", + "acc7cbc8-09c3-472b-87dd-f78459323dcb": "OpenDiscoveryAnalysisReport", + "f53bd594-5f75-4cf9-9f77-f5c35396590e": "SecurityAccessControl", + "0eb92215-52b1-4fac-92e7-ff02ff385a68": "QueryDataField", + "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5": "PortAlias", + "f45765a9-f3ae-4686-983f-602c348e020d": "RequestForAction", + "151e6dd1-54a0-4b7f-a072-85caa09d1dda": "ITInfrastructure", + "773298be-68ab-4b99-99ab-19eaa886261e": "ArchiveEngine", + "ac406bf8-e53e-49f1-9088-2af28eeee285": "AssetOwner", + "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e": "SearchKeyword", + "3566527f-b1bd-4e7a-873e-a3e04d5f2a14": "Engine", + "ed53a480-e6d4-44f1-aac7-3fac60bbb00e": "DeployedReportType", + "f2a4ff99-1954-48c0-8081-92d1a4dfd910": "DisplayDataContainer", + "cf21abfe-655a-47ba-b9b6-f73394745c80": "DerivedSchemaAttribute", + "191d870c-26f4-4310-a021-b8ca8772719d": "GovernanceService", + "5613677a-865f-474e-8044-4167fa5a31b9": "DivergentAttachmentRelationshipAnnotation", + "86de3633-eec8-4bf9-aad1-e92df1ca2024": "GraphStore", + "42063797-a78a-4720-9353-52026c75f667": "CohortMember", + "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9": "RelationalColumn", + "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d": "ExecutionPointDefinition", + "67228a7a-9d8d-4fa7-b217-17474f1f4ac6": "SetDocumentType", + "0cec20d3-aa29-41b7-96ea-1c544ed32537": "GovernanceObligation", + "b8703d3f-8668-4e6a-bf26-27db1607220d": "IntegrationReport", + "36db26d5-abb2-439b-bc15-d62d373c5db6": "TeamLeader", + "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50": "RootSchemaType", + "23e8287f-5c7e-4e03-8bd3-471fc7fc029c": "ClassificationAnnotation", + "62ef448c-d4c1-4c94-a565-5e5625f6a57b": "SolutionPort", + "a7392281-348d-48a4-bad7-f9742d7696fe": "TabularColumnType", + "ddd29c67-db9a-45ff-92aa-6d17a12a8ee2": "ArrayDocumentType", + "75293260-3373-4777-af7d-7274d5c0b9a5": "AvroFile", + "9f1fb984-db15-43ee-85fb-f8b0353bfb8b": "DataFolder", + "97cba3a0-1dfd-4129-82b6-798de3eec0a4": "ParquetFile", + "ccb408c0-582e-4a3a-a926-7082d53bb669": "ObjectAttribute", + "f6245c25-8f73-45eb-8fb5-fa17a5f27649": "StructDocumentType", + "72ed6de6-79d9-4e7d-aefc-b969382fc4b0": "DataFieldAnnotation", + "2ddc42d3-7791-4b4e-a064-91df9300290a": "TermsAndConditions", + "abc27cf7-e526-4d1b-9c25-7dd60a7993e4": "HadoopCluster", + "b144ee2a-fa71-4897-b51a-dd5239c26910": "DesignModelGroup", + "1449911c-4f44-4c22-abc0-7540154feefb": "DataSet", + "0799569f-0c16-4a1f-86d9-e2e89568f7fd": "Project", + "b83f3d42-f3f7-4155-ae65-58fb44ea7644": "SolutionComponent", + "b0f09598-ceb6-415b-befc-563ecadd5727": "MapDocumentType", + "ba8d29d2-a8a4-41f3-b29f-91ad924dd944": "ArraySchemaType", + "f671e1fc-b204-4ee6-a4e2-da1633ecf50e": "DigitalService", + "368e6fb3-7323-4f81-a723-5182491594bd": "DataProfileLogAnnotation", + "77ccda3d-c4c6-464c-a424-4b2cb27ac06c": "EventTypeList", + "7de10805-7c44-40e3-a410-ffc51306801b": "ValidValuesSet", + "d7df0579-8671-48f0-a8aa-38a487d418c8": "TranslationDetail", + "ba3c8dfa-42a5-492c-bebc-88fa7492e75a": "LastAttachment", + "4ca51fdf-9b70-46b1-bdf6-8860429e78d8": "Threat", + "c6fe40af-cdd6-4ca7-98c4-353d2612921f": "SubjectAreaOwner", + "6bf90c79-32f4-47ad-959c-8fff723fe744": "Meeting", + "49dd320b-4850-4838-9b78-f1285f0e6d2f": "GovernanceConfidentialityLevel", + "0bc3a16a-e8ed-4ad0-a302-0773365fdef0": "MetadataAccessService", + "0798569f-0c16-4a1f-86d9-e2e89568f7fd": "ProjectManager", + "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98": "RelationalTableType", + "90880f0b-c7a3-4d1d-93cc-0b877f27cd33": "EngineHostingService", + "3fa23d4a-aceb-422f-9301-04ed474c6f74": "GovernanceEngine", + "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35": "ActorProfile", + "e87836ad-f8bd-4c52-aecd-0f1872c692e5": "DataFeed", + "c976d88a-2b11-4b40-b972-c38d41bfc6be": "GovernanceAction", + "93dbc58d-c826-4bc2-b36f-195148d46f86": "ToDo", + "befa1458-79b8-446a-b813-536700e60fa8": "OrganizationalControl", + "9ada8e7b-823c-40f7-adf8-f164aabda77e": "GovernanceMetric", + "954421eb-33a6-462d-a8ca-b5709a1bd0d4": "ConnectorType", + "6920fda1-7c07-47c7-84f1-9fb044ae153e": "ObjectSchemaType", + "084cd115-5d0d-4f12-8093-697526a120ea": "GovernanceDomainDescription", + "b3adca2a-ce66-4b29-bf2e-7406ada8ab49": "FingerprintAnnotation", + "fbd42379-f6c3-4f08-b6f7-378565cda993": "Community", + "ba7c7884-32ce-4991-9c41-9778f1fec6aa": "SoftwareServerPlatform", + "3e09cb2b-5f15-4fd2-b004-fe0146ad8628": "Location", + "e2393236-100f-4ac0-a5e6-ce4e96c521e7": "VirtualContainer", + "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3": "DivergentRelationshipAnnotation", + "8f954380-12ce-4a2d-97c6-9ebe250fecf8": "GovernanceRule", + "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3": "DeployedReport", + "ba70f506-1f81-4890-bb4f-1cb1d99c939e": "NamingStandardRuleSet", + "229ed5cc-de31-45fc-beb4-9919fd247398": "FileFolder", + "9bd9d37a-b2ae-48ec-9776-080f667e91c5": "TransientEmbeddedProcess", + "1a226073-9c84-40e4-a422-fbddb9b84278": "Comment", + "30756d0b-362b-4bfa-a0de-fce6a8f47b47": "DataStore", + "fbd42379-f6c3-4f09-b6f7-378565cda993": "CommunityMember", + "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9": "QuerySchemaType", + "9c6ec0c6-0b26-4414-bffe-089144323213": "ReferenceCodeMappingTable", + "8efd6257-a53e-451d-abfc-8e4899c38b1f": "DivergentClassificationAnnotation", + "69751093-35f9-42b1-944b-ba6251ff513d": "SubscriberList", + "33da99cd-8d04-490c-9457-c58908da7794": "DocumentSchemaType", + "8af91d61-2ae8-4255-992e-14d7f745a556": "GovernanceClassificationLevel", + "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a": "GlossaryTerm", + "f0f75fba-9136-4082-8352-0ad74f3c36ed": "PrimitiveSchemaType", + "ac406bf8-e53e-49f1-9088-2af28bbbd285": "Person", + "1f83fc7c-75bb-491d-980d-ff9a6f80ae02": "UserViewService", + "ad6ed361-af14-458f-8fb7-d4c11baa45d2": "DigitalSubscription", + "79296df8-645a-4ef7-a011-912d1cdcf75a": "ContactDetails", + "ac406bf8-e53e-49f1-9088-2af28cccd285": "ContributionRecord", + "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3": "NoteLogAuthor", + "8078e3d1-0c63-4ace-aafa-68498b39ccd6": "Form", + "58280f3c-9d63-4eae-9509-3f223872fb25": "Application", + "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6": "DivergentAttachmentAnnotation", + "1252ce12-540c-4724-ad70-f70940956de0": "GraphVertex", + "7299d721-d17f-4562-8286-bcd451814478": "Rating", + "f20f5f45-1afb-41c1-9a09-34d8812626a4": "RelationalDBSchemaType", + "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f": "SchemaType", + "347005ba-2b35-4670-b5a7-12c9ebed0cf7": "Collection", + "24b092ac-42e9-43dc-aeca-eb034ce307d9": "EnumSchemaType", + "b5ec6e07-6419-4225-9dc4-fb55aba255c6": "SimpleSchemaType", + "492e343f-2516-43b8-94b0-5bae0760dda6": "DesignModelElement", + "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec": "TechnicalControl", + "a518de03-0f72-4944-9cd5-e05b43ae9c5e": "GovernanceStatusLevel", + "2f5796f5-3fac-4501-9d0d-207aa8620d16": "DisplayDataSchemaType", + "dbc20663-d705-4ff0-8424-80c262c6b8e7": "Endpoint", + "46db26d5-abb2-538b-bc15-d62d373c5db6": "TeamMember", + "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67": "GovernanceApproach", + "82f9c664-e59d-484c-a8f3-17088c23a2f3": "VirtualConnection", + "46f9ea33-996e-4c62-a67d-803df75ef9d4": "DisplayDataField", + "1fad7fe4-5115-412b-ae31-a418e93888fe": "IncidentClassifier", + "78de00ea-3d69-47ff-a6d6-767587526624": "ExternalSchemaType", + "eab811ec-556a-45f1-9091-bc7ac8face0f": "DeployedDatabaseSchema", + "54055c38-b9ad-4a66-a75b-14dc643d4c69": "SoftwareCapability", + "f2f5dae9-8410-420f-81f4-5d08543e07aa": "KafkaTopic", + "c04e29b2-2d66-48fc-a20d-e59895de6040": "ControlledGlossaryTerm", + "28452091-6b27-4f40-8e31-47ce34f58387": "VirtualMachine", + "983c5e72-801b-4e42-bc51-f109527f2317": "GraphSchemaType", + "10752b4a-4b5d-4519-9eae-fdd6d162122f": "DataFile", + "1abd16db-5b8a-4fd9-aee5-205db3febe99": "Host", + "21756af1-06c9-4b06-87d2-3ef911f0a58a": "ComponentOwner", + "ce7e72b8-396a-4013-8688-f9d973067425": "RelationalTable", + "39444bf9-638e-4124-a5f9-1b8f3e1b008b": "EnterpriseAccessLayer", + "c9a183ab-67f4-46a4-8836-16fa041769b7": "DeployedConnector", + "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa": "SoftwareArchive", + "e44d5019-37e5-4965-8b89-2bef412833bf": "SolutionOwner", + "06659195-3111-4c91-8931-a65f655378d9": "ConceptModelElement", + "7dbb3e63-138f-49f1-97b4-66313871fc14": "DeployedAPI", + "646727c7-9ad4-46fa-b660-265489ad96c6": "NoteLog", + "6cea5b53-558c-48f1-8191-11d48db29fb4": "Annotation", + "0075d603-1627-41c5-8cae-f5458d1247fe": "MediaCollection", + "6b60a73e-47bc-4096-9073-f94cab975958": "DesignPattern", + "89a76b24-deb8-45bf-9304-a578a610326f": "GovernanceResponsibility", + "283a127d-3acd-4d64-b558-1fce9db9a35b": "APIManager", + "979d97dd-6782-4648-8e2a-8982994533e6": "KeyStoreCollection", + "af536f20-062b-48ef-9c31-1ddd05b04c56": "ExternalReference", + "8bc88aba-d7e4-4334-957f-cfe8e8eadc32": "EventType", + "67e08705-2d2a-4df6-9239-1818161a41e0": "SchemaLinkElement" + }, + "entityTypeNameToGUID": { + "APISchemaType": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8", + "ControlPointDefinition": "a376a993-5f1c-4926-b74e-a15a38e1d55a", + "GovernancePolicy": "a7defa41-9cfa-4be5-9059-359022bb016d", + "DataProfileAnnotation": "bff1f694-afd0-4829-ab11-50a9fbaf2f5f", + "Document": "b463827c-c0a0-4cfb-a2b2-ddc63746ded4", + "DeployedSoftwareComponent": "486af62c-dcfd-4859-ab24-eab2e380ecfd", + "LiteralSchemaType": "520ebb91-c4eb-4d46-a3b1-974875cdcf0d", + "DataFile": "10752b4a-4b5d-4519-9eae-fdd6d162122f", + "IntegrationGroup": "4d7c43ec-983b-40e4-af78-6fb66c4f5136", + "Referenceable": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", + "ContactDetails": "79296df8-645a-4ef7-a011-912d1cdcf75a", + "Endpoint": "dbc20663-d705-4ff0-8424-80c262c6b8e7", + "ValidValuesSet": "7de10805-7c44-40e3-a410-ffc51306801b", + "VerificationPointDefinition": "27db26a1-ff66-4042-9932-ddc728b977b9", + "IntegrationReport": "b8703d3f-8668-4e6a-bf26-27db1607220d", + "DataStore": "30756d0b-362b-4bfa-a0de-fce6a8f47b47", + "EventTypeList": "77ccda3d-c4c6-464c-a424-4b2cb27ac06c", + "Actor": "16d2c34a-43db-476b-93ae-6a2996f514ec", + "InformationSupplyChainSegment": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1", + "GovernanceProcedure": "69055d10-51dc-4c2b-b21f-d76fad3f8ef3", + "RelationalTable": "ce7e72b8-396a-4013-8688-f9d973067425", + "ImplementationSnippet": "49990755-2faa-4a62-a1f3-9124b9c73df4", + "SubjectAreaDefinition": "d28c3839-bc6f-41ad-a882-5667e01fea72", + "UserIdentity": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", + "ConceptBeadLink": "13defd95-6452-4398-8382-e47f1a271eff", + "GovernanceDomainDescription": "084cd115-5d0d-4f12-8093-697526a120ea", + "DesignModelScope": "788957f7-a203-45bd-994d-0ab018275821", + "RequestForAction": "f45765a9-f3ae-4686-983f-602c348e020d", + "Project": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", + "SolutionBlueprint": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", + "IntegrationConnector": "759da11b-ebb6-4382-bdc9-72adc7c922db", + "GlossaryCategory": "e507485b-9b5a-44c9-8a28-6967f7ff3672", + "ConnectorCategory": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e", + "NamingStandardRuleSet": "ba70f506-1f81-4890-bb4f-1cb1d99c939e", + "CrowdSourcingContributor": "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3", + "ConceptBeadAttribute": "d804d406-ac74-4f92-9bde-2ba0793680ea", + "RegulationArticle": "829a648d-f249-455d-8127-aeafa021f832", + "GovernanceObligation": "0cec20d3-aa29-41b7-96ea-1c544ed32537", + "CSVFile": "2ccb2117-9cee-47ca-8150-9b3a543adcec", + "IncidentReport": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", + "SoftwareServerPlatform": "ba7c7884-32ce-4991-9c41-9778f1fec6aa", + "NoteLogAuthor": "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3", + "ExternalSchemaType": "78de00ea-3d69-47ff-a6d6-767587526624", + "DataFileCollection": "962de053-ab51-40eb-b843-85b98013f5ca", + "HadoopCluster": "abc27cf7-e526-4d1b-9c25-7dd60a7993e4", + "KeystoreFile": "17bee904-5b35-4c81-ac63-871c615424a2", + "MetadataRepository": "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9", + "EventSchemaAttribute": "5be4ee8f-4d0c-45cd-a411-22a468950342", + "DocumentSchemaType": "33da99cd-8d04-490c-9457-c58908da7794", + "SecurityService": "2df2069f-6475-400c-bf8c-6d2072a55d47", + "Infrastructure": "c19746ac-b3ec-49ce-af4b-83348fc55e07", + "SchemaElement": "718d4244-8559-49ed-ad5a-10e5c305a656", + "Team": "36db26d5-aba2-439b-bc15-d62d373c5db6", + "RelationalColumn": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", + "EventBroker": "309dfc3c-663b-4732-957b-e4a084436314", + "MediaFile": "c5ce5499-9582-42ea-936c-9771fbd475f8", + "SubjectAreaOwner": "c6fe40af-cdd6-4ca7-98c4-353d2612921f", + "ConceptModelElement": "06659195-3111-4c91-8931-a65f655378d9", + "ConnectorType": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", + "DatabaseManager": "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9", + "GovernanceMetric": "9ada8e7b-823c-40f7-adf8-f164aabda77e", + "Connection": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", + "RepositoryGovernanceEngine": "2b3bed05-c227-47d7-87a3-139ab0568361", + "DataManager": "82efa1fa-501f-4ac7-942c-6536c4a1cd61", + "PortAlias": "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5", + "APIManager": "283a127d-3acd-4d64-b558-1fce9db9a35b", + "GraphStore": "86de3633-eec8-4bf9-aad1-e92df1ca2024", + "MetadataRepositoryCohort": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893", + "Agreement": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", + "TransientEmbeddedProcess": "9bd9d37a-b2ae-48ec-9776-080f667e91c5", + "JSONFile": "baa608fa-510e-42d7-95cd-7c12fa37bb35", + "KafkaTopic": "f2f5dae9-8410-420f-81f4-5d08543e07aa", + "LocationOwner": "3437fd1d-5098-426c-9b55-c94d1fc5dc0e", + "DerivedRelationalColumn": "a9f7d15d-b797-450a-8d56-1ba55490c019", + "BusinessCapability": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", + "CohortRegistryStore": "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70", + "GovernanceActionProcess": "4d3a2b8d-9e2e-4832-b338-21c74e45b238", + "GovernanceRepresentative": "6046bdf8-a37e-4bc4-b51d-325d8c31a96c", + "Port": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", + "QuerySchemaType": "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9", + "PortImplementation": "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E", + "DerivedSchemaAttribute": "cf21abfe-655a-47ba-b9b6-f73394745c80", + "DataClassAnnotation": "0c8a3673-04ef-406f-899d-e88de67f6176", + "RepositoryGovernanceService": "978e7674-8231-4158-a4e3-a5ccdbcad60e", + "DisplayDataField": "46f9ea33-996e-4c62-a67d-803df75ef9d4", + "Process": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", + "RootSchemaType": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50", + "GovernanceActionType": "92e20083-0393-40c0-a95b-090724a91ddc", + "MetadataAccessService": "0bc3a16a-e8ed-4ad0-a302-0773365fdef0", + "SearchKeyword": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", + "SchemaType": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", + "DeployedReportType": "ed53a480-e6d4-44f1-aac7-3fac60bbb00e", + "InformationSupplyChain": "fa6de61d-98cb-48c4-b21f-ab7186235fd4", + "DigitalServiceManager": "6dfba6ce-e925-4281-880d-d04100c5b991", + "TabularColumnType": "a7392281-348d-48a4-bad7-f9742d7696fe", + "BoundedSchemaType": "77133161-37a9-43f5-aaa3-fd6d7ff92fdb", + "FileFolder": "229ed5cc-de31-45fc-beb4-9919fd247398", + "ActorProfile": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", + "ClassificationAnnotation": "23e8287f-5c7e-4e03-8bd3-471fc7fc029c", + "ToDo": "93dbc58d-c826-4bc2-b36f-195148d46f86", + "SimpleSchemaType": "b5ec6e07-6419-4225-9dc4-fb55aba255c6", + "DesignModelElement": "492e343f-2516-43b8-94b0-5bae0760dda6", + "ReferenceCodeMappingTable": "9c6ec0c6-0b26-4414-bffe-089144323213", + "BareMetalComputer": "8ef355d4-5cd7-4038-8337-62671b088920", + "SecurityGroup": "042d9b5c-677e-477b-811f-1c39bf716759", + "DataFolder": "9f1fb984-db15-43ee-85fb-f8b0353bfb8b", + "ProjectManager": "0798569f-0c16-4a1f-86d9-e2e89568f7fd", + "GraphSchemaType": "983c5e72-801b-4e42-bc51-f109527f2317", + "SimpleDocumentType": "42cfccbf-cc68-4980-8c31-0faf1ee002d3", + "Glossary": "36f66863-9726-4b41-97ee-714fd0dc6fe4", + "APIParameter": "10277b13-509c-480e-9829-bc16d0eafc53", + "FingerprintAnnotation": "b3adca2a-ce66-4b29-bf2e-7406ada8ab49", + "QueryDataField": "0eb92215-52b1-4fac-92e7-ff02ff385a68", + "ComponentOwner": "21756af1-06c9-4b06-87d2-3ef911f0a58a", + "ValidValueDefinition": "09b2133a-f045-42cc-bb00-ee602b74c618", + "DivergentRelationshipAnnotation": "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3", + "Form": "8078e3d1-0c63-4ace-aafa-68498b39ccd6", + "EnumSchemaType": "24b092ac-42e9-43dc-aeca-eb034ce307d9", + "Rating": "7299d721-d17f-4562-8286-bcd451814478", + "PrimitiveSchemaType": "f0f75fba-9136-4082-8352-0ad74f3c36ed", + "DesignPattern": "6b60a73e-47bc-4096-9073-f94cab975958", + "DisplayDataSchemaType": "2f5796f5-3fac-4501-9d0d-207aa8620d16", + "DisplayDataContainer": "f2a4ff99-1954-48c0-8081-92d1a4dfd910", + "DeployedReport": "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3", + "ProjectCharter": "f96b5a32-42c1-4a74-8f77-70a81cec783d", + "SoftwareServerCapability": "fe30a033-8f86-4d17-8986-e6166fa24177", + "PersonRole": "ac406bf8-e53e-49f1-9088-2af28bcbd285", + "SchemaAnalysisAnnotation": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", + "ArchiveEngine": "773298be-68ab-4b99-99ab-19eaa886261e", + "GraphVertex": "1252ce12-540c-4724-ad70-f70940956de0", + "DataSourcePhysicalStatusAnnotation": "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23", + "MetadataCollection": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976", + "GovernanceControl": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", + "DeployedDatabaseSchema": "eab811ec-556a-45f1-9091-bc7ac8face0f", + "DeployedAPI": "7dbb3e63-138f-49f1-97b4-66313871fc14", + "DivergentAttachmentClassificationAnnotation": "a2a5cb74-f8e0-470f-be71-26b7e32166a6", + "TermsAndConditions": "2ddc42d3-7791-4b4e-a064-91df9300290a", + "ComplexSchemaType": "786a6199-0ce8-47bf-b006-9ace1c5510e4", + "CohortMember": "42063797-a78a-4720-9353-52026c75f667", + "GovernanceRole": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee", + "OrganizationalControl": "befa1458-79b8-446a-b813-536700e60fa8", + "ArchiveService": "e6c049e2-56aa-4512-a634-20cd7085e534", + "ControlledGlossaryTerm": "c04e29b2-2d66-48fc-a20d-e59895de6040", + "RelationalColumnType": "f0438d80-6eb9-4fac-bcc1-5efee5babcfc", + "EmbeddedProcess": "8145967e-bb83-44b2-bc8c-68112c6a5a06", + "MetadataRepositoryService": "27891e52-1255-4a33-98a2-377717a25334", + "QualityAnnotation": "72e6473d-4ce0-4609-80a4-e6e949a7f520", + "Regulation": "e3c4293d-8846-4500-b0c0-197d73aba8b0", + "GovernanceProcess": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea", + "Community": "fbd42379-f6c3-4f08-b6f7-378565cda993", + "BusinessOwner": "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5", + "DataFeed": "e87836ad-f8bd-4c52-aecd-0f1872c692e5", + "Location": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", + "AvroFile": "75293260-3373-4777-af7d-7274d5c0b9a5", + "CertificationType": "97f9ffc9-e2f7-4557-ac12-925257345eea", + "UserViewService": "1f83fc7c-75bb-491d-980d-ff9a6f80ae02", + "DigitalService": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", + "DataSet": "1449911c-4f44-4c22-abc0-7540154feefb", + "MapDocumentType": "b0f09598-ceb6-415b-befc-563ecadd5727", + "MapSchemaType": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", + "TranslationDetail": "d7df0579-8671-48f0-a8aa-38a487d418c8", + "DataProcessingDescription": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", + "GovernanceActionService": "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9", + "DocumentStore": "37156790-feac-4e1a-a42e-88858ae6f8e1", + "StorageVolume": "14145458-f0d0-4955-8899-b8a2874708c9", + "ExternalReference": "af536f20-062b-48ef-9c31-1ddd05b04c56", + "DigitalSubscription": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", + "GovernanceDefinition": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", + "DivergentClassificationAnnotation": "8efd6257-a53e-451d-abfc-8e4899c38b1f", + "Network": "e0430f59-f021-411a-9d81-883e1ff3f6f6", + "Database": "0921c83f-b2db-4086-a52c-0d10e52ca078", + "Asset": "896d14c2-7522-4f6c-8519-757711943fe6", + "SetSchemaType": "b2605d2d-10cd-443c-b3e8-abf15fb051f0", + "ObjectAttribute": "ccb408c0-582e-4a3a-a926-7082d53bb669", + "SoftwareService": "f3f69251-adb1-4042-9d95-70082f95a028", + "SemanticAnnotation": "0b494819-28be-4604-b238-3af20963eea6", + "AssetOwner": "ac406bf8-e53e-49f1-9088-2af28eeee285", + "MetadataIntegrationService": "92f7fe27-cd2f-441c-a084-156821aa5bca", + "BusinessImperative": "bb094b5e-0934-4d8b-8727-48eb5d241a46", + "NetworkGateway": "9bbae94d-e109-4c96-b072-4f97123f04fd", + "SecurityAccessControl": "f53bd594-5f75-4cf9-9f77-f5c35396590e", + "ContributionRecord": "ac406bf8-e53e-49f1-9088-2af28cccd285", + "StructDocumentType": "f6245c25-8f73-45eb-8fb5-fa17a5f27649", + "ParquetFile": "97cba3a0-1dfd-4129-82b6-798de3eec0a4", + "DesignModelGroup": "b144ee2a-fa71-4897-b51a-dd5239c26910", + "DataProcessingPurpose": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", + "DataItemOwner": "69836cfd-39b8-460b-8727-b04e19210069", + "DataField": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", + "HostCluster": "9794f42f-4c9f-4fe6-be84-261f0a7de890", + "TeamLeader": "36db26d5-abb2-439b-bc15-d62d373c5db6", + "RelationshipAdviceAnnotation": "740f07dc-4ee8-4c2a-baba-efb55c73eb68", + "InformalTag": "ba846a7b-2955-40bf-952b-2793ceca090a", + "GovernanceStatusLevel": "a518de03-0f72-4944-9cd5-e05b43ae9c5e", + "Application": "58280f3c-9d63-4eae-9509-3f223872fb25", + "Person": "ac406bf8-e53e-49f1-9088-2af28bbbd285", + "EnforcementPointDefinition": "e87ff806-bb9c-4c5d-8106-f38f2dd21037", + "VirtualMachine": "28452091-6b27-4f40-8e31-47ce34f58387", + "ApplicationService": "5b7f340e-7dc9-45c0-a636-c20605147c94", + "VirtualContainer": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", + "GovernanceDriver": "c403c109-7b6b-48cd-8eee-df445b258b33", + "DivergentAttachmentRelationshipAnnotation": "5613677a-865f-474e-8044-4167fa5a31b9", + "Organization": "50a61105-35be-4ee3-8b99-bdd958ed0685", + "Meeting": "6bf90c79-32f4-47ad-959c-8fff723fe744", + "GovernanceAction": "c976d88a-2b11-4b40-b972-c38d41bfc6be", + "DataFieldAnnotation": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", + "DataProfileLogAnnotation": "368e6fb3-7323-4f81-a723-5182491594bd", + "OpenDiscoveryEngine": "be650674-790b-487a-a619-0a9002488055", + "QueryDataContainer": "b55c2740-2d41-4433-a099-596c8e9b7bf6", + "LogFile": "ff4c8484-9127-464a-97fc-99579d5bc429", + "SolutionComponent": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", + "SchemaTypeChoice": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", + "GovernanceClassificationLevel": "8af91d61-2ae8-4255-992e-14d7f745a556", + "DocumentSchemaAttribute": "b5cefb7e-b198-485f-a1d7-8e661012499b", + "SoftwareServer": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", + "ExecutionPointDefinition": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", + "DockerContainer": "9882b8aa-eba3-4a30-94c6-43117efd11cc", + "RelatedMedia": "747f8b86-fe7c-4c9b-ba75-979e093cc307", + "EnterpriseAccessLayer": "39444bf9-638e-4124-a5f9-1b8f3e1b008b", + "DivergentAttachmentValueAnnotation": "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2", + "Annotation": "6cea5b53-558c-48f1-8191-11d48db29fb4", + "GovernanceRule": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", + "OpenDiscoveryAnalysisReport": "acc7cbc8-09c3-472b-87dd-f78459323dcb", + "ArrayDocumentType": "ddd29c67-db9a-45ff-92aa-6d17a12a8ee2", + "DesignModel": "bf17143d-8605-48c2-ba80-64c2ac8f8379", + "OpenMetadataRoot": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", + "ServiceLevelObjective": "22c4e433-1b87-4446-840a-03f83d2dc113", + "VirtualConnection": "82f9c664-e59d-484c-a8f3-17088c23a2f3", + "TabularColumn": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", + "SuspectDuplicateAnnotation": "f703a621-4078-4c07-ab22-e7c334b94235", + "SchemaAttribute": "1a5e159b-913a-43b1-95fe-04433b25fca9", + "GraphEdge": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", + "Threat": "4ca51fdf-9b70-46b1-bdf6-8860429e78d8", + "EventType": "8bc88aba-d7e4-4334-957f-cfe8e8eadc32", + "OperatingPlatform": "bd96a997-8d78-42f6-adf7-8239bc98501c", + "RelationalTableType": "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98", + "DivergentValueAnnotation": "b86cdded-1078-4e42-b6ba-a718c2c67f62", + "OpenDiscoveryService": "2f278dfc-4640-4714-b34b-303e84e4fc40", + "SoftwareCapability": "54055c38-b9ad-4a66-a75b-14dc643d4c69", + "Like": "deaa5ca0-47a0-483d-b943-d91c76744e01", + "StructSchemaType": "a13b409f-fd67-4506-8d94-14dfafd250a4", + "GovernanceActionEngine": "5d74250a-57ca-4197-9475-8911f620a94e", + "ITInfrastructure": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", + "APIOperation": "f1c0af19-2729-4fac-996e-a7badff3c21c", + "Engine": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", + "SolutionOwner": "e44d5019-37e5-4965-8b89-2bef412833bf", + "SolutionPort": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", + "KeyStoreCollection": "979d97dd-6782-4648-8e2a-8982994533e6", + "GovernanceResponsibility": "89a76b24-deb8-45bf-9304-a578a610326f", + "TabularFileColumn": "af6265e7-5f58-4a9c-9ae7-8d4284be62bd", + "NoteEntry": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", + "GovernancePrinciple": "3b7d1325-ec2c-44cb-8db0-ce207beb78cf", + "SetDocumentType": "67228a7a-9d8d-4fa7-b217-17474f1f4ac6", + "ConceptBead": "f7feb509-bce6-4989-a340-5dc7e3eec313", + "Catalog": "f4fffcc0-d9eb-4bb9-8aff-0718932f689e", + "DataSourceMeasurementAnnotation": "c85bea73-d7af-46d7-8a7e-cb745910b1df", + "PropertyFacet": "6403a704-aad6-41c2-8e08-b9525c006f85", + "EngineHostingService": "90880f0b-c7a3-4d1d-93cc-0b877f27cd33", + "ReferenceCodeTable": "201f48c5-4e4b-41dc-9c5f-0bc9742190cf", + "TechnicalControl": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec", + "AnnotationReview": "b893d6fc-642a-454b-beaf-809ee4dd876a", + "MediaCollection": "0075d603-1627-41c5-8cae-f5458d1247fe", + "Collection": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", + "TabularSchemaType": "248975ec-8019-4b8a-9caf-084c8b724233", + "GovernanceZone": "290a192b-42a7-449a-935a-269ca62cfdac", + "RelationalDBSchemaType": "f20f5f45-1afb-41c1-9a09-34d8812626a4", + "DivergentDuplicateAnnotation": "251e443c-dee0-47fa-8a73-1a9d511915a0", + "GovernanceApproach": "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67", + "ArraySchemaType": "ba8d29d2-a8a4-41f3-b29f-91ad924dd944", + "DivergentAttachmentAnnotation": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6", + "ObjectSchemaType": "6920fda1-7c07-47c7-84f1-9fb044ae153e", + "TableDataSet": "20c45531-5d2e-4eb6-9a47-035cb1067b82", + "GovernanceStrategy": "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf", + "KubernetesCluster": "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c", + "LastAttachment": "ba3c8dfa-42a5-492c-bebc-88fa7492e75a", + "GovernanceOfficer": "578a3510-9ad3-45fe-8ada-e4e9572c37c8", + "LicenseType": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", + "ITProfile": "81394f85-6008-465b-926e-b3fae4668937", + "GlossaryTerm": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", + "APIParameterList": "ba167b12-969f-49d3-8bea-d04228d9a44b", + "Topic": "29100f49-338e-4361-b05d-7e4e8e818325", + "DeployedConnector": "c9a183ab-67f4-46a4-8836-16fa041769b7", + "IncidentClassifier": "1fad7fe4-5115-412b-ae31-a418e93888fe", + "Comment": "1a226073-9c84-40e4-a422-fbddb9b84278", + "GovernanceEngine": "3fa23d4a-aceb-422f-9301-04ed474c6f74", + "EventSet": "bead9aa4-214a-4596-8036-aa78395bbfb1", + "NamingStandardRule": "52505b06-98a5-481f-8a32-db9b02afabfc", + "ExternalId": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", + "Host": "1abd16db-5b8a-4fd9-aee5-205db3febe99", + "InformationView": "68d7b905-6438-43be-88cf-5de027b4aaaf", + "SubscriberList": "69751093-35f9-42b1-944b-ba6251ff513d", + "TeamMember": "46db26d5-abb2-538b-bc15-d62d373c5db6", + "SoftwareArchive": "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa", + "DataProcessingAction": "7f53928f-9148-4710-ad37-47633f33cb08", + "CommunityMember": "fbd42379-f6c3-4f09-b6f7-378565cda993", + "OpenDiscoveryPipeline": "081abe00-740e-4143-b0d5-a1f55450fc22", + "GovernanceConfidentialityLevel": "49dd320b-4850-4838-9b78-f1285f0e6d2f", + "NoteLog": "646727c7-9ad4-46fa-b660-265489ad96c6", + "ExternalGlossaryLink": "183d2935-a950-4d74-b246-eac3664b5a9d", + "DataClass": "6bc727dc-e855-4979-8736-78ac3cfcd32f", + "GovernanceService": "191d870c-26f4-4310-a021-b8ca8772719d", + "SchemaLinkElement": "67e08705-2d2a-4df6-9239-1818161a41e0" + }, + "relationshipTypeGUIDToName": { + "e47a19d0-7e12-4cf7-9ad7-50856da7faa2": "AssociatedGroup", + "6337c9cd-8e5a-461b-97f9-5151bcb97a9e": "ValidValueMember", + "2cf1e949-7189-4bf2-8ee4-e1318e59abd7": "AttachedStorage", + "d5d588c3-46c9-420c-adff-6031802a7e51": "TermISATypeOFRelationship", + "cb10c107-b7af-475d-aab0-d78b8297b982": "GovernanceRoleAssignment", + "c628938e-815e-47db-8d1c-59bb2e84e028": "CategoryAnchor", + "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1": "AssetLocation", + "01664609-e777-4079-b543-6baffe910ff1": "ProfileIdentity", + "ee8c78a1-a3ae-4824-a4e1-dcb64bc3a45b": "SubjectAreaGovernance", + "806933fb-7925-439b-9876-922a960d2ba1": "GovernanceControlLink", + "f081808d-545a-41cb-a9aa-c4f074a16c78": "ProjectCharterLink", + "b5de932a-738c-4c69-b852-09fec2b9c678": "BusinessCapabilityControls", + "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4": "GovernanceProcessImplementation", + "6447c9cd-8e5a-461b-97f9-5151bcb97a9e": "RelatedDesignPattern", + "d0dd0ac7-01f4-48e0-ae4d-4f7268573fa8": "SolutionComponentImplementation", + "c5e6fada-2c12-46ee-afa9-b71dd1bd8179": "GovernanceDriverLink", + "ea5e126a-a8fa-4a43-bcfa-309a98aa0185": "Antonym", + "d57043c2-eeab-4167-8d0d-2223af8aee93": "DesignModelOwnership", + "d2490c0c-06cc-458a-add2-33cf2f5dd724": "DataFlow", + "f672245f-35b5-4ca7-b645-014cf61d5b75": "GovernanceActionTypeExecutor", + "5652d03a-f6c9-411a-a3e4-f490d3856b64": "SolutionComponentPort", + "5d3c2fb7-fa04-4d77-83cb-fd9216a07769": "AnnotationReviewLink", + "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114": "SolutionComposition", + "f82a96c2-95a3-4223-88c0-9cbf2882b772": "NestedLocation", + "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed": "ReplacementTerm", + "70dbbda3-903f-49f7-9782-32b503c43e0e": "ProcessHierarchy", + "89c3c695-9e8d-4660-9f44-ed971fd55f89": "GovernedBy", + "89c3c695-9e8d-4660-9f44-ed971fd55f88": "GovernanceResults", + "46ec49bf-af66-4575-aab7-06ce895120cd": "TargetForAction", + "91ff7542-c275-4cd3-b367-97eec3360422": "DigitalServiceManagement", + "017d0518-fc25-4e5e-985e-491d91e61e17": "AdjacentLocation", + "4f798c0c-6769-4a2d-b489-d2714d89e0a4": "AttachedNoteLog", + "6932ba75-9522-4a06-a4a4-ee60a4df6aab": "DeployedOn", + "8845990e-7fd9-4b79-a19d-6c4730dadd6b": "GovernanceResponse", + "4a985162-8130-4559-b68e-6e6a5dc19c2a": "DesignModelGroupOwnership", + "2dc524d2-e29f-4186-9081-72ea956c75de": "UsedInContext", + "79ac27f6-be9c-489f-a7c2-b9add0bf705c": "DigitalServiceOperator", + "7eded424-f176-4258-9ae6-138a46b2845f": "AssetDiscoveryReport", + "f2bd7401-c064-41ac-862c-e5bcdc98fa1e": "HostNetwork", + "57e3687e-393e-4c0c-a4f1-a6634075465b": "LastAttachmentLink", + "e3fdafe3-692a-46c6-a595-c538cc189dd9": "AssignmentScope", + "1353400f-b0ab-4ab9-ab09-3045dd8a7140": "MediaReference", + "6b947ccc-1a70-4785-9ca3-d6326bc51291": "DataClassHierarchy", + "74f4094d-dba2-4ad9-874e-d422b69947e2": "Synonym", + "87b7371e-e311-460f-8849-08646d0d6ad3": "SourcedFrom", + "605aaa6d-682e-405c-964b-ca6aaa94be1b": "AnnotationExtension", + "83d12156-f8f3-4b4b-b31b-18c140df9aa3": "RelatedIntegrationReport", + "e5bd6acf-932c-4d9c-85ff-941a8e4451db": "OperatingPlatformManifest", + "d9a39553-6a47-4477-a217-844300c07cf2": "ValidValuesImplementation", + "1a1c3933-a583-4b0c-9e42-c3691296a8e0": "HostClusterMember", + "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b": "SubjectAreaHierarchy", + "970a3405-fde1-4039-8249-9aa5f56d5151": "LinkedFile", + "35e53b7f-2312-4d66-ae90-2d4cb47901ee": "License", + "4a316abe-bccd-4d11-ad5a-4bfb4079b80b": "Peer", + "4cb88900-1446-4eb6-acea-29cd9da45e63": "NestedFile", + "bc5a5eb1-881b-4055-aa2c-78f314282ac2": "CatalogTarget", + "767fb343-4699-49c1-a0f8-af6da78505f8": "DataClassComposition", + "4ab3b466-31bd-48ea-8aa2-75623476f2e2": "APIRequest", + "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62": "RelatedKeyword", + "fcdccfa3-e9f0-4543-8720-1958799fb6dc": "InformationSupplyChainComposition", + "6ae42e95-efc5-4256-bfa8-801140a29d2a": "Translation", + "207e5130-ab7c-4048-9249-a63a43c13d60": "InformationSupplyChainLink", + "1c2622b7-ac21-413c-89e1-6f61f348cd19": "DerivedSchemaTypeQueryTarget", + "03737169-ceb5-45f0-84f0-21c5929945af": "APIOperations", + "746875af-2e41-4d1f-864b-35265df1d5dc": "ProjectTeam", + "c5cb1362-07f6-486b-b80b-ba7922cacee9": "DesignModelImplementation", + "48ac9028-45dd-495d-b3e1-622685b54a01": "FolderHierarchy", + "6f89c320-22aa-4d99-9a97-442e8d214655": "AssociatedSnippet", + "3e844049-e59b-45dd-8e62-cde1add59f9e": "BoundedSchemaElementType", + "d2f8df24-6905-49b8-b389-31b2da156ece": "SearchKeywordLink", + "873e29bd-ca14-4833-a6bb-9ebdf89b5b1b": "DigitalServiceImplementation", + "1dfdec0f-f206-4db7-bac8-ec344205fb3c": "DataProcessingSpecification", + "3eb268f4-9419-4281-a487-d25ccd88eba3": "ExecutionPointUse", + "8335e6ed-fd86-4000-9bc5-5203062f28ba": "SolutionPortDelegation", + "1ebc4fb2-b62a-4269-8f18-e9237a2119ca": "TeamMembership", + "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3": "ApprovedPurpose", + "B216fA00-8281-F9CC-9911-Ae6377f2b457": "PortSchema", + "4ff6d91b-3836-4ba2-9ca9-87da91081faa": "DesignModelElementsInScope", + "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a": "PreferredTerm", + "0ffb9d87-7074-45da-a9b0-ae0859611133": "NestedSchemaAttribute", + "8292343f-6a96-4ca8-a447-38f734c75634": "AttachedTermsAndConditions", + "e2509715-a606-415d-a995-61d00503dad4": "AttachedLike", + "d9567840-9904-43a5-990b-4585c0446e00": "NextGovernanceActionType", + "be12ff15-0721-4a7e-8c98-334eaa884bdf": "RegulationCertificationType", + "8b9dd3ea-057b-4709-9b42-f16098523907": "CohortMemberMetadataCollection", + "56315447-88a6-4235-ba91-fead86524ebf": "ServerAssetUse", + "75026fac-f9e5-4da8-9ad1-e9c68d47f577": "DataProfileLogFile", + "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e": "TopicSubscribers", + "4c579e3d-a4ff-41c1-9931-33e6fc992f2b": "ITInfrastructureProfile", + "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3": "NetworkGatewayLink", + "6189d444-2da4-4cd7-9332-e48a1c340b44": "MapFromElementType", + "e701a5c8-c1ba-4b75-8257-e0a6569eda48": "GovernanceRuleImplementation", + "5ebc4fb2-b62a-4269-8f18-e9237a2229ca": "TeamStructure", + "af2b5fab-8f83-4a2b-b749-1e6219f61f79": "ActionAssignment", + "51465a59-c785-406d-929c-def34596e9af": "DigitalServiceProduct", + "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2": "DigitalServiceDesign", + "4b981d89-e356-4d9b-8f17-b3a8d5a86676": "DeployedVirtualContainer", + "4a316abe-eeee-4d11-ad5a-4bfb4079b80b": "PersonalContribution", + "a94b2929-9e62-4b12-98ab-8ac45691e5bd": "PeerDuplicateLink", + "0908e153-e0fd-499c-8a30-5ea8b81395cd": "ImpactedResource", + "8b7d7da5-0668-4174-a43b-8f8c6c068dd0": "SoftwareServerSupportedCapability", + "0999e2b9-45d6-42c4-9767-4b74b0b48b89": "AssociatedLog", + "017be6a8-0037-49d8-af5d-c45c41f25e0b": "IncidentDependency", + "4c4d1d9c-a9fc-4305-8b71-4e891c0f9ae0": "ZoneGovernance", + "eed5565d-7ac2-46fe-9a26-4722fad8d993": "SchemaTypeImplementation", + "111e6d2e-94e9-43ed-b4ed-f0d220668cbf": "ReferenceValueAssignment", + "707a156b-e579-4482-89a5-de5889da1971": "ValidValue", + "7c7da1a3-01b3-473e-972e-606eff0cb112": "CommunityMembership", + "e777d660-8dbe-453e-8b83-903771f054c0": "ConnectionToAsset", + "eb4f1f98-c649-4560-8a46-da17c02764a9": "SchemaTypeOption", + "f6b5cf4f-7b88-47df-aeb0-d80d28ba1ec1": "RuntimeForProcess", + "d1a9a79f-4c9c-4dff-837e-1353ba51b607": "ProcessInput", + "2b8bfab4-8023-4611-9833-82a0dc95f187": "ServerEndpoint", + "92b75926-8e9a-46c7-9d98-89009f622397": "AssetServerUse", + "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c": "TermHASARelationship", + "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139": "ZoneHierarchy", + "e076fbb3-54f5-46b8-8f1e-a7cb7e792673": "GovernanceDefinitionMetric", + "292125f7-5660-4533-a48a-478c5611922e": "LinkedType", + "58c87647-ada9-4c90-a3c3-a40ace46b1f7": "ReferenceableFacet", + "5ebc4fb2-b62a-4269-8f18-e9237a2119ca": "TeamLeadership", + "60f1e263-e24d-4f20-8c0d-b5e21232cd54": "SchemaAttributeDefinition", + "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2": "ProcessPort", + "576228af-33ec-4588-ba4e-6a864a097e10": "TranslationLink", + "cee3a190-fc8d-4e53-908a-f1b9689581e0": "LinkedMedia", + "9a5d78c2-1716-4783-bfc6-c300a9e2d092": "LinkedExternalSchemaType", + "892a3d1c-cfb8-431d-bd59-c4d38833bfb0": "SolutionLinkingWire", + "2c05beaf-e313-47f8-ac18-2298140b2ad9": "SoftwarePackageDependency", + "73cf5658-6a73-4ebc-8f4d-44fdfac0b437": "ResourceList", + "1a379e55-a4c0-4289-a1a4-b89d257611d1": "ConceptBeadRelationshipEnd", + "7540d9fb-1848-472e-baef-97a44b9f0c45": "KnownDuplicateLink", + "203ce62c-3cbf-4542-bf82-81820cba718f": "ValidValuesMapping", + "9b6a91b5-a339-4245-b208-040805f95a75": "IsATypeOfRelationship", + "696a81f5-ac60-46c7-b9fd-6979a1e7ad27": "TermCategorization", + "f3b18ac7-3357-4a0c-8988-77a98adad5b5": "DesignModelElementOwnership", + "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f": "MoreInformation", + "aca1277b-bf1c-42f5-9b3b-fbc2c9047325": "Actions", + "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb": "VisibleEndpoint", + "33937ece-5ab6-4cd3-a348-b8196ffc3b4e": "ContractLink", + "38c346e4-ddd2-42ef-b4aa-55d53c078d22": "LibraryTermReference", + "cb15c107-b7af-475d-aab0-d78b8297b982": "GovernanceResponsibilityAssignment", + "bc63ac45-b4d0-4fba-b583-92859de77dd8": "ProjectScope", + "6cb9af43-184e-4dfa-854a-1572bcf0fe75": "ContactThrough", + "390559eb-6a0c-4dd7-bc95-b9074caffa7f": "Certification", + "e5d7025d-8b4f-43c7-bcae-1047d650b94a": "SchemaQueryImplementation", + "7d881574-461d-475c-ab44-077451528cb8": "GroupedMedia", + "2d955049-e59b-45dd-8e62-cde1add59f9e": "SchemaAttributeType", + "b9179df5-6e23-4581-a8b0-2919e6322b12": "HostOperatingPlatform", + "1744d72b-903d-4273-9229-de20372a17e2": "DiscoveryInvocationReport", + "4a316abe-bcce-4d11-ad5a-4bfb4079b80b": "PersonRoleAppointment", + "a05f918e-e7e2-419d-8016-5b37406df63a": "Meetings", + "b472a2ec-f419-4d3f-86fb-e9d97365f961": "PermittedProcessing", + "2dcfe62b-341c-4c3d-b336-a94a52c20556": "DesignModelGroupMembership", + "833e849d-eda2-40bb-9e6b-c3ca0b56d581": "DataFieldAnalysis", + "d909eb3b-5205-4180-9f63-122a65b30738": "SoftwareServerDeployment", + "bf02c703-57a2-4ab7-b6db-f49b57b05985": "SolutionPortSchema", + "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82": "ConsolidatedDuplicateLink", + "de5b9501-3ad4-4803-a8b2-e311c72a4336": "APIEndpoint", + "0943e0ba-73ac-476b-8ebe-2ef30ba44976": "OperatingPlatformUse", + "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4": "ProfileLocation", + "b323c9cf-f254-49c7-a391-11222e9da70f": "GlossaryTermEvolution", + "5323a705-4c1f-456a-9741-41fdcb8e93ac": "GovernanceActionRequestSource", + "af904501-6347-4f52-8378-da50e8d74828": "ProcessCall", + "f3066075-9611-4886-9244-32cc6eb07ea9": "HostLocation", + "8f798c0c-6769-4a2d-b489-12714d89e0a4": "NoteLogAuthorship", + "3845b5cc-8c85-462f-b7e6-47472a568793": "GovernanceDefinitionScope", + "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f": "DigitalSupport", + "71e4b6fb-3412-4193-aff3-a16eccd87e8e": "CategoryHierarchyLink", + "ac63ac45-a4d0-4fba-b583-92859de77dd8": "ProjectManagement", + "6aab4ec6-f0c6-4c40-9f50-ac02a3483358": "SchemaTypeSnippet", + "8b9856b3-451e-45fc-afc7-fddefd81a73a": "MapToElementType", + "8c5b1415-2d1f-4190-ba6c-1fdd47f03269": "ExternalIdScope", + "5cabb76a-e25b-4bb5-8b93-768bbac005af": "CollectionMembership", + "887a7132-d6bc-4b92-a483-e80b60c86fb2": "ConnectionEndpoint", + "38edecc6-f385-4574-8144-524a44e3e712": "AttachedNoteLogEntry", + "2480aa71-44c5-414d-8b32-9c4340786d77": "SupportedSoftwareCapability", + "815b004d-73c6-4728-9dd9-536f4fe803cd": "AssetSchemaType", + "73510abd-49e6-4097-ba4b-23bd3ef15baa": "RelationshipAnnotation", + "3da21cc9-3cdc-4d87-89b5-c501740f00b2": "LibraryCategoryReference", + "4df37335-7f0c-4ced-82df-3b2fd07be1bd": "DataClassAssignment", + "633648f3-c951-4ad7-b975-9fc04e0f3d2e": "ConnectorImplementationChoice", + "86b176a2-015c-44a6-8106-54d5d69ba661": "AttributeForSchema", + "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646": "ToDoSource", + "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6": "APIHeader", + "0d90501b-bf29-4621-a207-0c8c953bdac9": "AttachedComment", + "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344": "AttachedRating", + "60f2d263-e24d-4f20-8c0d-b5e22222cd54": "DiscoveredDataField", + "0ac0e793-6727-45d2-9403-06bd19d9ce2e": "DetailedProcessingActions", + "0c42c999-4cac-4da4-afab-0e381f3a818e": "GovernancePolicyLink", + "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96": "ConnectionConnectorType", + "e490772e-c2c5-445a-aea6-1aab3499a76c": "IncidentOriginator", + "1d43d661-bdc7-4a91-a996-3239b8f82e56": "TermAnchor", + "e8303911-ba1c-4640-974e-c4d57ee1b310": "DigitalServiceDependency", + "2726df0e-4f3a-44e1-8433-4ca5301457fd": "SupportedGovernanceService", + "5b6a56f1-68e2-4e10-85f0-fda47a4263fd": "ProjectDependency", + "b1161696-e563-4cf9-9fd9-c0c76e47d063": "RelatedTerm", + "1c811d0b-e9ce-44af-b6ed-133e73322e32": "AgreementActor", + "7786a39c-436b-4538-acc7-d595b5856add": "ExternallySourcedGlossary", + "b827683c-2924-4df3-a92d-7be1888e23c0": "DataContentForDataSet", + "787eaf46-7cf2-4096-8d6e-671a0819d57e": "GovernanceImplementation", + "60f2d263-e24d-4f20-8c0d-b5e12356cd54": "DiscoveredNestedDataField", + "207e2594-e3e4-4be8-a12c-4c401656e241": "ActionTarget", + "b909eb3b-5205-4180-9f63-122a65b30738": "SoftwareServerPlatformDeployment", + "60f2d263-e24d-4f20-8c0d-b5e24648cd54": "SchemaTypeDefinition", + "28f63c94-aaef-4c84-98f7-d77aa605272e": "ImplementedBy", + "47f0ad39-db77-41b0-b406-36b1598e0ba7": "OrganizationalCapability", + "94715275-0520-43e9-81fe-4fe8ec3d8f3a": "InformationSupplyChainImplementation", + "809b7c6c-69f9-4dbf-a5dd-085664499438": "DesignModelGroupHierarchy", + "e8001de2-1bb1-442b-a66f-9addc3641eae": "APIResponse", + "28ab0381-c662-4b6d-b787-5d77208de126": "ExternalIdLink", + "ecf1a3ca-adc5-4747-82cf-10ec590c5c69": "AcceptedAnswer", + "f1ae975f-f11a-467b-8c7a-b023081e4712": "SolutionBlueprintComposition", + "503b4221-71c8-4ba9-8f3d-6a035b27971c": "GraphEdgeLink", + "4db83564-b200-4956-94a4-c95a5c30e65a": "CrowdSourcingContribution", + "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0": "GovernanceActionFlow", + "4b1641c4-3d1a-4213-86b2-d6968b6c65ab": "AttachedTag", + "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4": "DigitalSubscriber", + "c5d48b73-eadd-47db-ab64-3be99b2fb32d": "ValidValuesAssignment", + "2c318c3a-5dc2-42cd-a933-0087d852f67f": "DiscoveryEngineReport", + "7d818a67-ab45-481c-bc28-f6b1caf12f06": "ExternalReferenceLink", + "31e734ec-5baf-4e96-9f0d-e8a85081cb14": "GovernanceActionTypeUse", + "e3e40f99-70fe-478c-9676-78a50cded70b": "ProcessOutput", + "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a": "DataProcessingTarget", + "51d386a3-3857-42e3-a3df-14a6cad08b93": "DiscoveredAnnotation", + "dff45aeb-c65e-428c-9ab3-d756bc5d8dbb": "SupportedDiscoveryService", + "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff": "LineageMapping", + "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2": "RegisteredIntegrationConnector", + "8f1134f6-b9fe-4971-bc57-6e1b8b302b55": "ProjectHierarchy", + "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07": "ForeignKey", + "669e8aa4-c671-4ee7-8d03-f37d09b9d006": "TermTYPEDBYRelationship", + "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f": "EmbeddedConnection", + "e6670973-645f-441a-bec7-6f5570345b92": "SemanticAssignment", + "954cdba1-3d69-4db1-bf0e-d59fd2c25a27": "MetadataCohortPeer", + "4efd16d4-f397-449c-a75d-ebea42fe581b": "NextGovernanceAction", + "e690ab17-6779-46b4-a8f1-6872d88c1bbb": "GovernanceActionExecutor", + "db9583c5-4690-41e5-a580-b4e30a0242d3": "SchemaLinkToType", + "49f2ecb5-6bf7-4324-9824-ac98d595c404": "ResponsibilityStaffContact", + "51a2d263-e24d-4f20-8c0d-b5e12356cd54": "DataClassDefinition", + "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E": "PortDelegation", + "efd8a136-0aea-4668-b91a-30f947e38b82": "Stakeholder", + "5bad1df2-664b-407b-8036-2855e2ede92f": "ConceptBeadAttributeLink", + "35450726-1c32-4d41-b928-22db6d1ae2f4": "ControlFlow", + "a540c361-0ed1-45d6-b525-007592ae806d": "AgreementItem", + "50fab7c7-68bc-452f-b8eb-ec76829cac85": "ISARelationship", + "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd": "SupplementaryProperties" + }, + "relationshipTypeNameToGUID": { + "UsedInContext": "2dc524d2-e29f-4186-9081-72ea956c75de", + "BoundedSchemaElementType": "3e844049-e59b-45dd-8e62-cde1add59f9e", + "AttachedComment": "0d90501b-bf29-4621-a207-0c8c953bdac9", + "ZoneGovernance": "4c4d1d9c-a9fc-4305-8b71-4e891c0f9ae0", + "SolutionComponentImplementation": "d0dd0ac7-01f4-48e0-ae4d-4f7268573fa8", + "ProcessPort": "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2", + "DataFieldAnalysis": "833e849d-eda2-40bb-9e6b-c3ca0b56d581", + "DeployedOn": "6932ba75-9522-4a06-a4a4-ee60a4df6aab", + "AnnotationReviewLink": "5d3c2fb7-fa04-4d77-83cb-fd9216a07769", + "SchemaTypeSnippet": "6aab4ec6-f0c6-4c40-9f50-ac02a3483358", + "ProjectCharterLink": "f081808d-545a-41cb-a9aa-c4f074a16c78", + "KnownDuplicateLink": "7540d9fb-1848-472e-baef-97a44b9f0c45", + "DataClassComposition": "767fb343-4699-49c1-a0f8-af6da78505f8", + "SchemaLinkToType": "db9583c5-4690-41e5-a580-b4e30a0242d3", + "GovernanceDriverLink": "c5e6fada-2c12-46ee-afa9-b71dd1bd8179", + "PersonalContribution": "4a316abe-eeee-4d11-ad5a-4bfb4079b80b", + "DataContentForDataSet": "b827683c-2924-4df3-a92d-7be1888e23c0", + "BusinessCapabilityControls": "b5de932a-738c-4c69-b852-09fec2b9c678", + "RegisteredIntegrationConnector": "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2", + "PortDelegation": "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E", + "ServerEndpoint": "2b8bfab4-8023-4611-9833-82a0dc95f187", + "MoreInformation": "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f", + "ProjectHierarchy": "8f1134f6-b9fe-4971-bc57-6e1b8b302b55", + "AnnotationExtension": "605aaa6d-682e-405c-964b-ca6aaa94be1b", + "DigitalServiceOperator": "79ac27f6-be9c-489f-a7c2-b9add0bf705c", + "ProcessCall": "af904501-6347-4f52-8378-da50e8d74828", + "APIResponse": "e8001de2-1bb1-442b-a66f-9addc3641eae", + "PeerDuplicateLink": "a94b2929-9e62-4b12-98ab-8ac45691e5bd", + "DesignModelGroupMembership": "2dcfe62b-341c-4c3d-b336-a94a52c20556", + "RelatedIntegrationReport": "83d12156-f8f3-4b4b-b31b-18c140df9aa3", + "SchemaAttributeDefinition": "60f1e263-e24d-4f20-8c0d-b5e21232cd54", + "DerivedSchemaTypeQueryTarget": "1c2622b7-ac21-413c-89e1-6f61f348cd19", + "GovernanceActionExecutor": "e690ab17-6779-46b4-a8f1-6872d88c1bbb", + "DiscoveredAnnotation": "51d386a3-3857-42e3-a3df-14a6cad08b93", + "MapToElementType": "8b9856b3-451e-45fc-afc7-fddefd81a73a", + "NestedSchemaAttribute": "0ffb9d87-7074-45da-a9b0-ae0859611133", + "SourcedFrom": "87b7371e-e311-460f-8849-08646d0d6ad3", + "TranslationLink": "576228af-33ec-4588-ba4e-6a864a097e10", + "CommunityMembership": "7c7da1a3-01b3-473e-972e-606eff0cb112", + "ExternalIdScope": "8c5b1415-2d1f-4190-ba6c-1fdd47f03269", + "RelatedKeyword": "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62", + "AcceptedAnswer": "ecf1a3ca-adc5-4747-82cf-10ec590c5c69", + "GovernanceDefinitionMetric": "e076fbb3-54f5-46b8-8f1e-a7cb7e792673", + "SchemaQueryImplementation": "e5d7025d-8b4f-43c7-bcae-1047d650b94a", + "AssetSchemaType": "815b004d-73c6-4728-9dd9-536f4fe803cd", + "TopicSubscribers": "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e", + "OrganizationalCapability": "47f0ad39-db77-41b0-b406-36b1598e0ba7", + "ReplacementTerm": "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed", + "DigitalServiceImplementation": "873e29bd-ca14-4833-a6bb-9ebdf89b5b1b", + "DataFlow": "d2490c0c-06cc-458a-add2-33cf2f5dd724", + "MetadataCohortPeer": "954cdba1-3d69-4db1-bf0e-d59fd2c25a27", + "ConceptBeadRelationshipEnd": "1a379e55-a4c0-4289-a1a4-b89d257611d1", + "AttachedNoteLogEntry": "38edecc6-f385-4574-8144-524a44e3e712", + "CollectionMembership": "5cabb76a-e25b-4bb5-8b93-768bbac005af", + "AssetServerUse": "92b75926-8e9a-46c7-9d98-89009f622397", + "ApprovedPurpose": "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3", + "ContractLink": "33937ece-5ab6-4cd3-a348-b8196ffc3b4e", + "TargetForAction": "46ec49bf-af66-4575-aab7-06ce895120cd", + "ConnectorImplementationChoice": "633648f3-c951-4ad7-b975-9fc04e0f3d2e", + "DesignModelElementOwnership": "f3b18ac7-3357-4a0c-8988-77a98adad5b5", + "ProjectManagement": "ac63ac45-a4d0-4fba-b583-92859de77dd8", + "DataClassDefinition": "51a2d263-e24d-4f20-8c0d-b5e12356cd54", + "Stakeholder": "efd8a136-0aea-4668-b91a-30f947e38b82", + "GovernanceActionFlow": "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0", + "SolutionComposition": "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114", + "APIOperations": "03737169-ceb5-45f0-84f0-21c5929945af", + "LinkedExternalSchemaType": "9a5d78c2-1716-4783-bfc6-c300a9e2d092", + "RelationshipAnnotation": "73510abd-49e6-4097-ba4b-23bd3ef15baa", + "AssociatedGroup": "e47a19d0-7e12-4cf7-9ad7-50856da7faa2", + "GovernancePolicyLink": "0c42c999-4cac-4da4-afab-0e381f3a818e", + "ResponsibilityStaffContact": "49f2ecb5-6bf7-4324-9824-ac98d595c404", + "DiscoveredDataField": "60f2d263-e24d-4f20-8c0d-b5e22222cd54", + "SubjectAreaGovernance": "ee8c78a1-a3ae-4824-a4e1-dcb64bc3a45b", + "PersonRoleAppointment": "4a316abe-bcce-4d11-ad5a-4bfb4079b80b", + "TermTYPEDBYRelationship": "669e8aa4-c671-4ee7-8d03-f37d09b9d006", + "MapFromElementType": "6189d444-2da4-4cd7-9332-e48a1c340b44", + "ValidValueMember": "6337c9cd-8e5a-461b-97f9-5151bcb97a9e", + "SchemaTypeDefinition": "60f2d263-e24d-4f20-8c0d-b5e24648cd54", + "GovernanceResponsibilityAssignment": "cb15c107-b7af-475d-aab0-d78b8297b982", + "Synonym": "74f4094d-dba2-4ad9-874e-d422b69947e2", + "TermISATypeOFRelationship": "d5d588c3-46c9-420c-adff-6031802a7e51", + "SchemaTypeOption": "eb4f1f98-c649-4560-8a46-da17c02764a9", + "DataProcessingSpecification": "1dfdec0f-f206-4db7-bac8-ec344205fb3c", + "EmbeddedConnection": "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f", + "DesignModelGroupOwnership": "4a985162-8130-4559-b68e-6e6a5dc19c2a", + "ConnectionToAsset": "e777d660-8dbe-453e-8b83-903771f054c0", + "RegulationCertificationType": "be12ff15-0721-4a7e-8c98-334eaa884bdf", + "GovernanceActionRequestSource": "5323a705-4c1f-456a-9741-41fdcb8e93ac", + "GovernanceRuleImplementation": "e701a5c8-c1ba-4b75-8257-e0a6569eda48", + "IsATypeOfRelationship": "9b6a91b5-a339-4245-b208-040805f95a75", + "ServerAssetUse": "56315447-88a6-4235-ba91-fead86524ebf", + "SchemaTypeImplementation": "eed5565d-7ac2-46fe-9a26-4722fad8d993", + "RelatedTerm": "b1161696-e563-4cf9-9fd9-c0c76e47d063", + "GovernanceActionTypeExecutor": "f672245f-35b5-4ca7-b645-014cf61d5b75", + "APIHeader": "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6", + "LibraryTermReference": "38c346e4-ddd2-42ef-b4aa-55d53c078d22", + "InformationSupplyChainImplementation": "94715275-0520-43e9-81fe-4fe8ec3d8f3a", + "ImplementedBy": "28f63c94-aaef-4c84-98f7-d77aa605272e", + "GovernanceProcessImplementation": "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4", + "OperatingPlatformManifest": "e5bd6acf-932c-4d9c-85ff-941a8e4451db", + "ITInfrastructureProfile": "4c579e3d-a4ff-41c1-9931-33e6fc992f2b", + "GroupedMedia": "7d881574-461d-475c-ab44-077451528cb8", + "NestedFile": "4cb88900-1446-4eb6-acea-29cd9da45e63", + "HostOperatingPlatform": "b9179df5-6e23-4581-a8b0-2919e6322b12", + "TermAnchor": "1d43d661-bdc7-4a91-a996-3239b8f82e56", + "ForeignKey": "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07", + "DesignModelGroupHierarchy": "809b7c6c-69f9-4dbf-a5dd-085664499438", + "DiscoveryEngineReport": "2c318c3a-5dc2-42cd-a933-0087d852f67f", + "APIRequest": "4ab3b466-31bd-48ea-8aa2-75623476f2e2", + "SoftwareServerDeployment": "d909eb3b-5205-4180-9f63-122a65b30738", + "CohortMemberMetadataCollection": "8b9dd3ea-057b-4709-9b42-f16098523907", + "ReferenceableFacet": "58c87647-ada9-4c90-a3c3-a40ace46b1f7", + "RelatedDesignPattern": "6447c9cd-8e5a-461b-97f9-5151bcb97a9e", + "DigitalServiceDependency": "e8303911-ba1c-4640-974e-c4d57ee1b310", + "NextGovernanceActionType": "d9567840-9904-43a5-990b-4585c0446e00", + "ContactThrough": "6cb9af43-184e-4dfa-854a-1572bcf0fe75", + "License": "35e53b7f-2312-4d66-ae90-2d4cb47901ee", + "SoftwareServerPlatformDeployment": "b909eb3b-5205-4180-9f63-122a65b30738", + "FolderHierarchy": "48ac9028-45dd-495d-b3e1-622685b54a01", + "HostClusterMember": "1a1c3933-a583-4b0c-9e42-c3691296a8e0", + "LibraryCategoryReference": "3da21cc9-3cdc-4d87-89b5-c501740f00b2", + "ZoneHierarchy": "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139", + "OperatingPlatformUse": "0943e0ba-73ac-476b-8ebe-2ef30ba44976", + "DigitalServiceProduct": "51465a59-c785-406d-929c-def34596e9af", + "ConceptBeadAttributeLink": "5bad1df2-664b-407b-8036-2855e2ede92f", + "AttachedStorage": "2cf1e949-7189-4bf2-8ee4-e1318e59abd7", + "ProfileIdentity": "01664609-e777-4079-b543-6baffe910ff1", + "ToDoSource": "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646", + "SolutionPortDelegation": "8335e6ed-fd86-4000-9bc5-5203062f28ba", + "Translation": "6ae42e95-efc5-4256-bfa8-801140a29d2a", + "DataProcessingTarget": "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a", + "SubjectAreaHierarchy": "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b", + "DiscoveredNestedDataField": "60f2d263-e24d-4f20-8c0d-b5e12356cd54", + "ReferenceValueAssignment": "111e6d2e-94e9-43ed-b4ed-f0d220668cbf", + "Actions": "aca1277b-bf1c-42f5-9b3b-fbc2c9047325", + "TeamMembership": "1ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "SoftwarePackageDependency": "2c05beaf-e313-47f8-ac18-2298140b2ad9", + "TeamLeadership": "5ebc4fb2-b62a-4269-8f18-e9237a2119ca", + "SolutionLinkingWire": "892a3d1c-cfb8-431d-bd59-c4d38833bfb0", + "ControlFlow": "35450726-1c32-4d41-b928-22db6d1ae2f4", + "DiscoveryInvocationReport": "1744d72b-903d-4273-9229-de20372a17e2", + "SolutionPortSchema": "bf02c703-57a2-4ab7-b6db-f49b57b05985", + "AssociatedSnippet": "6f89c320-22aa-4d99-9a97-442e8d214655", + "ExternalIdLink": "28ab0381-c662-4b6d-b787-5d77208de126", + "ResourceList": "73cf5658-6a73-4ebc-8f4d-44fdfac0b437", + "CategoryHierarchyLink": "71e4b6fb-3412-4193-aff3-a16eccd87e8e", + "PreferredTerm": "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a", + "DeployedVirtualContainer": "4b981d89-e356-4d9b-8f17-b3a8d5a86676", + "SolutionBlueprintComposition": "f1ae975f-f11a-467b-8c7a-b023081e4712", + "DataClassHierarchy": "6b947ccc-1a70-4785-9ca3-d6326bc51291", + "DesignModelImplementation": "c5cb1362-07f6-486b-b80b-ba7922cacee9", + "GovernanceResults": "89c3c695-9e8d-4660-9f44-ed971fd55f88", + "DesignModelElementsInScope": "4ff6d91b-3836-4ba2-9ca9-87da91081faa", + "HostNetwork": "f2bd7401-c064-41ac-862c-e5bcdc98fa1e", + "AttributeForSchema": "86b176a2-015c-44a6-8106-54d5d69ba661", + "AssetLocation": "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1", + "SoftwareServerSupportedCapability": "8b7d7da5-0668-4174-a43b-8f8c6c068dd0", + "IncidentDependency": "017be6a8-0037-49d8-af5d-c45c41f25e0b", + "SchemaAttributeType": "2d955049-e59b-45dd-8e62-cde1add59f9e", + "GovernanceImplementation": "787eaf46-7cf2-4096-8d6e-671a0819d57e", + "LinkedMedia": "cee3a190-fc8d-4e53-908a-f1b9689581e0", + "AssignmentScope": "e3fdafe3-692a-46c6-a595-c538cc189dd9", + "ValidValuesImplementation": "d9a39553-6a47-4477-a217-844300c07cf2", + "AssociatedLog": "0999e2b9-45d6-42c4-9767-4b74b0b48b89", + "ExternallySourcedGlossary": "7786a39c-436b-4538-acc7-d595b5856add", + "ExternalReferenceLink": "7d818a67-ab45-481c-bc28-f6b1caf12f06", + "MediaReference": "1353400f-b0ab-4ab9-ab09-3045dd8a7140", + "ValidValue": "707a156b-e579-4482-89a5-de5889da1971", + "ExecutionPointUse": "3eb268f4-9419-4281-a487-d25ccd88eba3", + "AgreementItem": "a540c361-0ed1-45d6-b525-007592ae806d", + "GovernanceActionTypeUse": "31e734ec-5baf-4e96-9f0d-e8a85081cb14", + "TeamStructure": "5ebc4fb2-b62a-4269-8f18-e9237a2229ca", + "NextGovernanceAction": "4efd16d4-f397-449c-a75d-ebea42fe581b", + "ProjectDependency": "5b6a56f1-68e2-4e10-85f0-fda47a4263fd", + "DetailedProcessingActions": "0ac0e793-6727-45d2-9403-06bd19d9ce2e", + "AttachedTermsAndConditions": "8292343f-6a96-4ca8-a447-38f734c75634", + "InformationSupplyChainLink": "207e5130-ab7c-4048-9249-a63a43c13d60", + "GovernedBy": "89c3c695-9e8d-4660-9f44-ed971fd55f89", + "DigitalSupport": "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f", + "RuntimeForProcess": "f6b5cf4f-7b88-47df-aeb0-d80d28ba1ec1", + "SupportedDiscoveryService": "dff45aeb-c65e-428c-9ab3-d756bc5d8dbb", + "NestedLocation": "f82a96c2-95a3-4223-88c0-9cbf2882b772", + "ProfileLocation": "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4", + "LinkedFile": "970a3405-fde1-4039-8249-9aa5f56d5151", + "TermCategorization": "696a81f5-ac60-46c7-b9fd-6979a1e7ad27", + "APIEndpoint": "de5b9501-3ad4-4803-a8b2-e311c72a4336", + "VisibleEndpoint": "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb", + "LastAttachmentLink": "57e3687e-393e-4c0c-a4f1-a6634075465b", + "ConnectionEndpoint": "887a7132-d6bc-4b92-a483-e80b60c86fb2", + "CategoryAnchor": "c628938e-815e-47db-8d1c-59bb2e84e028", + "SupportedSoftwareCapability": "2480aa71-44c5-414d-8b32-9c4340786d77", + "ProjectTeam": "746875af-2e41-4d1f-864b-35265df1d5dc", + "ProcessOutput": "e3e40f99-70fe-478c-9676-78a50cded70b", + "LineageMapping": "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff", + "ValidValuesAssignment": "c5d48b73-eadd-47db-ab64-3be99b2fb32d", + "Peer": "4a316abe-bccd-4d11-ad5a-4bfb4079b80b", + "ActionAssignment": "af2b5fab-8f83-4a2b-b749-1e6219f61f79", + "DigitalServiceDesign": "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2", + "Certification": "390559eb-6a0c-4dd7-bc95-b9074caffa7f", + "ConsolidatedDuplicateLink": "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82", + "NetworkGatewayLink": "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3", + "ConnectionConnectorType": "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96", + "Antonym": "ea5e126a-a8fa-4a43-bcfa-309a98aa0185", + "GraphEdgeLink": "503b4221-71c8-4ba9-8f3d-6a035b27971c", + "GlossaryTermEvolution": "b323c9cf-f254-49c7-a391-11222e9da70f", + "SupportedGovernanceService": "2726df0e-4f3a-44e1-8433-4ca5301457fd", + "DigitalServiceManagement": "91ff7542-c275-4cd3-b367-97eec3360422", + "ProjectScope": "bc63ac45-b4d0-4fba-b583-92859de77dd8", + "ISARelationship": "50fab7c7-68bc-452f-b8eb-ec76829cac85", + "Meetings": "a05f918e-e7e2-419d-8016-5b37406df63a", + "SearchKeywordLink": "d2f8df24-6905-49b8-b389-31b2da156ece", + "GovernanceControlLink": "806933fb-7925-439b-9876-922a960d2ba1", + "DesignModelOwnership": "d57043c2-eeab-4167-8d0d-2223af8aee93", + "AttachedRating": "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344", + "DataClassAssignment": "4df37335-7f0c-4ced-82df-3b2fd07be1bd", + "AttachedNoteLog": "4f798c0c-6769-4a2d-b489-d2714d89e0a4", + "LinkedType": "292125f7-5660-4533-a48a-478c5611922e", + "CrowdSourcingContribution": "4db83564-b200-4956-94a4-c95a5c30e65a", + "InformationSupplyChainComposition": "fcdccfa3-e9f0-4543-8720-1958799fb6dc", + "ProcessHierarchy": "70dbbda3-903f-49f7-9782-32b503c43e0e", + "AdjacentLocation": "017d0518-fc25-4e5e-985e-491d91e61e17", + "SemanticAssignment": "e6670973-645f-441a-bec7-6f5570345b92", + "HostLocation": "f3066075-9611-4886-9244-32cc6eb07ea9", + "ProcessInput": "d1a9a79f-4c9c-4dff-837e-1353ba51b607", + "AgreementActor": "1c811d0b-e9ce-44af-b6ed-133e73322e32", + "IncidentOriginator": "e490772e-c2c5-445a-aea6-1aab3499a76c", + "PortSchema": "B216fA00-8281-F9CC-9911-Ae6377f2b457", + "AttachedTag": "4b1641c4-3d1a-4213-86b2-d6968b6c65ab", + "TermHASARelationship": "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c", + "ActionTarget": "207e2594-e3e4-4be8-a12c-4c401656e241", + "GovernanceResponse": "8845990e-7fd9-4b79-a19d-6c4730dadd6b", + "SolutionComponentPort": "5652d03a-f6c9-411a-a3e4-f490d3856b64", + "ValidValuesMapping": "203ce62c-3cbf-4542-bf82-81820cba718f", + "GovernanceDefinitionScope": "3845b5cc-8c85-462f-b7e6-47472a568793", + "DataProfileLogFile": "75026fac-f9e5-4da8-9ad1-e9c68d47f577", + "ImpactedResource": "0908e153-e0fd-499c-8a30-5ea8b81395cd", + "GovernanceRoleAssignment": "cb10c107-b7af-475d-aab0-d78b8297b982", + "AssetDiscoveryReport": "7eded424-f176-4258-9ae6-138a46b2845f", + "AttachedLike": "e2509715-a606-415d-a995-61d00503dad4", + "NoteLogAuthorship": "8f798c0c-6769-4a2d-b489-12714d89e0a4", + "SupplementaryProperties": "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd", + "PermittedProcessing": "b472a2ec-f419-4d3f-86fb-e9d97365f961", + "DigitalSubscriber": "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4", + "CatalogTarget": "bc5a5eb1-881b-4055-aa2c-78f314282ac2" + } + } +}; \ No newline at end of file diff --git a/src/components/HappiGraph/Tex/tex-inheritance.render.ts b/src/components/HappiGraph/Tex/tex-inheritance.render.ts index 3d25619..ed2595b 100644 --- a/src/components/HappiGraph/Tex/tex-inheritance.render.ts +++ b/src/components/HappiGraph/Tex/tex-inheritance.render.ts @@ -208,7 +208,7 @@ const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeCli .append('g') .classed('node-group', false) .attr('id', (d: any) => d.id) - .on('click', (d: any) => { onNodeClick ? onNodeClick(d.target.__data__) : console.log('ON_NODE_CLICK_NOT_IMPLEMENTED'); }) + .on('click', (d: any) => { onNodeClick ? onNodeClick(d.target.__data__.tex) : console.log('ON_NODE_CLICK_NOT_IMPLEMENTED'); }) .attr('transform', (d: any) => `translate(${d.x}, ${d.y})`) .call( d3.drag() diff --git a/src/components/HappiGraph/happi-graph.helpers.ts b/src/components/HappiGraph/happi-graph.helpers.ts index 961a0e2..e792f94 100644 --- a/src/components/HappiGraph/happi-graph.helpers.ts +++ b/src/components/HappiGraph/happi-graph.helpers.ts @@ -1,46 +1,48 @@ -import { itemGroupIconMap } from '@lfai/egeria-js-commons'; +import { itemGroupIconMap } from "@lfai/egeria-js-commons"; enum GraphType { LINEAGE, TEX_INHERITANCE, - TEX_NEIGHBOURHOOD + TEX_NEIGHBOURHOOD, } const getNodeHeight = (length: number) => { const defaultHeight = 70; - const computedHeight = - (length >= 1 ? (length * 30) : 0); + const computedHeight = length >= 1 ? length * 30 : 0; return defaultHeight + computedHeight; }; const mapNodes = (nodes: any, selectedNodeId: string) => { - return nodes.map((n:any) => { + return nodes.map((n: any) => { const keys = Object.keys(n.properties ? n.properties : {}); - const props = keys.map(k => { + const props = keys.map((k) => { const camelCased = k.charAt(0).toUpperCase() + k.slice(1); return { value: n.properties[k], label: k, - icon: itemGroupIconMap[camelCased] ? itemGroupIconMap[camelCased].icon : 'simple-square', - groupName: camelCased - } + icon: itemGroupIconMap[camelCased] + ? itemGroupIconMap[camelCased].icon + : "simple-square", + groupName: camelCased, + }; }); const result = { id: n.id, - type: itemGroupIconMap[n.group] ? itemGroupIconMap[n.group].icon : 'simple-square', - value: n.label ? n.label : 'N/A', - label: n.group ? n.group : 'N/A', + type: itemGroupIconMap[n.group] + ? itemGroupIconMap[n.group].icon + : "simple-square", + value: n.label ? n.label : "N/A", + label: n.group ? n.group : "N/A", selected: n.id === selectedNodeId, width: 300, height: getNodeHeight(props.length), - properties: [ - ...props - ] + properties: [...props], + ...(n.tex && { tex: n.tex }), }; return result; @@ -62,13 +64,9 @@ const mapLinks = (links: any, nodes: any) => { connectionFrom: l.connectionFrom ? l.connectionFrom : false, connectionTo: l.connectionTo ? l.connectionTo : true, - type: l.type + type: l.type, }; }); }; -export { - GraphType, - mapNodes, - mapLinks -} +export { GraphType, mapNodes, mapLinks }; diff --git a/src/mockData.ts b/src/mockData.ts index a7f20e1..4a35adb 100644 --- a/src/mockData.ts +++ b/src/mockData.ts @@ -1,147221 +1,28 @@ -// export const mockData = { -// nodes:[ -// {"id":"1","label":"Node 1","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Relational Table::(database_column)=Database Column"}, -// {"id":"2","label":"Node 2","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, -// {"id":"3","label":"Node 3","group":"RelationalTable","properties":{"schema":"Schema","database":"Database"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table"}, -// {"id":"4","label":"Node 4","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table::(database_column)=Database Column"}, -// {"id":"5","label":"Node 5","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, -// {"id":"6","label":"Node 6","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category"}, -// {"id":"7","label":"Node 7","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Database Schema::(database_table)=Database Table::(database_column)=Database Column"}, -// {"id":"8","label":"Node 8","group":"GlossaryTerm","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Glossary::(category)=TEST::(term)=test_egeria"}, -// {"id":"9","label":"Node 9","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data file Field"}, -// {"id":"10","label":"Node 10","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data File Field"}, -// {"id":"11","label":"Node 11","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category::(category)=Category"} -// ], -// edges:[ -// {"id":"4-8","from":"8","to":"4","label":"SemanticAssignment","type":null}, -// {"id":"7-8","from":"8","to":"7","label":"SemanticAssignment","type":null}, -// {"id":"1-8","from":"8","to":"1","label":"SemanticAssignment","type":null}, -// {"id":"8-11","from":"8","to":"11","label":"TermCategorization","type":"ReferencingCategory"}, -// {"id":"8-2","from":"8","to":"2","label":"TermCategorization","type":"ReferencingCategory"}, -// {"id":"3-8","from":"8","to":"3","label":"SemanticAssignment","type":null}, -// {"id":"8-6","from":"8","to":"6","label":"TermCategorization","type":"ReferencingCategory"}, -// {"id":"10-8","from":"8","to":"10","label":"SemanticAssignment","type":null}, -// {"id":"9-8","from":"8","to":"9","label":"SemanticAssignment","type":null}, -// {"id":"8-5","from":"8","to":"5","label":"TermCategorization","type":"PrimaryCategory"} -// ] -// }; - -const data: 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", - "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", - "Certification" - ], - "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" - ] - }, - "UserViewService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1f83fc7c-75bb-491d-980d-ff9a6f80ae02", - "name": "UserViewService", - "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 user interfaces access to digital resources.", - "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" - ] - }, - "DigitalService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "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 business function implemented using IT.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "DRAFT", - "PREPARED", - "PROPOSED", - "APPROVED", - "REJECTED", - "APPROVED_CONCEPT", - "UNDER_DEVELOPMENT", - "DEVELOPMENT_COMPLETE", - "APPROVED_FOR_DEPLOYMENT", - "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 digital service.", - "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 digital service.", - "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 component.", - "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": [ - "DigitalServiceOperator", - "DigitalServiceDependency", - "DigitalServiceDependency", - "DigitalServiceProduct", - "DigitalSupport", - "DigitalServiceDesign", - "DigitalServiceManagement" - ], - "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" - ] - }, - "DataSet": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1449911c-4f44-4c22-abc0-7540154feefb", - "name": "DataSet", - "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": "Collection of related 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": "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 - } - ] - }, - "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": [ - "DataFileCollection", - "ReferenceCodeMappingTable", - "Form", - "DeployedReport", - "MetadataCollection", - "DeployedDatabaseSchema", - "KeyStoreCollection", - "ReferenceCodeTable", - "MediaCollection", - "TableDataSet", - "Topic", - "InformationView", - "SubscriberList" - ], - "classificationNames": [ - "GovernanceMeasurementsResultsDataSet" - ], - "relationshipNames": [ - "DataContentForDataSet", - "GovernanceResults" - ], - "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" - ] - }, - "MapSchemaType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", - "name": "MapSchemaType", - "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 for a map between a key and value.", - "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": [ - "MapToElementType", - "MapFromElementType" - ], - "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" - ] - }, - "TranslationDetail": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "d7df0579-8671-48f0-a8aa-38a487d418c8", - "name": "TranslationDetail", - "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 collection of translated properties.", - "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": "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": "Translation of the name or displayName property.", - "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": "Translation of the description property.", - "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": "Language for the translation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "additionalTranslations", - "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": "Translations of other string properties found in the linked entity.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "locale", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Locale for the translation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "languageCode", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 for identifying the language - for example from ISO-639.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ] - }, - "inheritedAttributes": [], - "subTypeNames": [], - "classificationNames": [], - "relationshipNames": [ - "TranslationLink" - ], - "inheritedRelationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "DataProcessingDescription": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", - "name": "DataProcessingDescription", - "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": "Name of the data processing description.", - "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 data processing description.", - "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": [ - "DataProcessingSpecification", - "DetailedProcessingActions", - "PermittedProcessing" - ], - "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" - ] - }, - "GovernanceActionService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9", - "name": "GovernanceActionService", - "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 that conforms to the Governance Action Framework (GAF).", - "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": "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" - ] - }, - "DocumentStore": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "37156790-feac-4e1a-a42e-88858ae6f8e1", - "name": "DocumentStore", - "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": "Identifies a data store as one that contains documents.", - "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" - ] - }, - "StorageVolume": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "14145458-f0d0-4955-8899-b8a2874708c9", - "name": "StorageVolume", - "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 persistent storage volume.", - "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": [], - "classificationNames": [], - "relationshipNames": [ - "AttachedStorage" - ], - "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" - ] - }, - "ExternalReference": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", - "name": "ExternalReference", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A link to an external reference source such as a web page, article or book.", - "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": "pageRange", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "copyright", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Copyright statement associated with this external source.", - "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 to use when displaying reference in a list.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationNumbers", - "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", - "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 external source. For example, its significance and use.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "edition", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 edition for this external source.", - "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": "referenceVersion", - "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceTitle", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 publication title of the external source.", - "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": "Network address where this external source can be accessed from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceAbstract", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Summary of the key messages in the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationSeries", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 journal or series of publications that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationCity", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "City where the publishers are based.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "license", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 license associated with this external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "numberOfPages", - "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 pages that this external source has.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationSeriesVolume", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 volume in the publication series that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "organization", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 revision or version of the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "attribution", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Attribution statement to use when consuming this external resource.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publisher", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 publisher responsible for producing this external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationYear", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Year when the publication of this version/edition of the external source was published.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationDate", - "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 when this version/edition of this external source was published.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "authors", - "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 authors for the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "firstPublicationDate", - "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 of the first published version/edition of this external source.", - "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": [ - "RelatedMedia", - "ExternalGlossaryLink" - ], - "classificationNames": [], - "relationshipNames": [ - "ContractLink", - "ExternalReferenceLink" - ], - "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" - ] - }, - "DigitalSubscription": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", - "name": "DigitalSubscription", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", - "name": "Agreement", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A specialized agreement that represents a subscription to a digital service or digital product.", - "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": "supportLevel", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Level of support agreed for the subscriber.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "serviceLevels", - "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": "Levels of service agreed with the subscriber.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ] - }, - "inheritedAttributes": [ - { - "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 - }, - { - "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": [ - "DigitalSubscriber" - ], - "inheritedRelationshipNames": [ - "UsedInContext", - "AttachedComment", - "MoreInformation", - "MoreInformation", - "DigitalServiceOperator", - "ProcessCall", - "ProcessCall", - "PeerDuplicateLink", - "PeerDuplicateLink", - "RelatedIntegrationReport", - "SourcedFrom", - "SourcedFrom", - "TranslationLink", - "ExternalIdScope", - "DataFlow", - "DataFlow", - "CollectionMembership", - "ApprovedPurpose", - "ContractLink", - "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", - "AgreementItem", - "AttachedTermsAndConditions", - "InformationSupplyChainLink", - "InformationSupplyChainLink", - "GovernedBy", - "LineageMapping", - "LineageMapping", - "ValidValuesAssignment", - "Certification", - "ConsolidatedDuplicateLink", - "ConsolidatedDuplicateLink", - "Meetings", - "SearchKeywordLink", - "AttachedRating", - "DataClassAssignment", - "AttachedNoteLog", - "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" - ] - }, - "GovernanceDefinition": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", - "name": "GovernanceDefinition", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Defines an aspect of the governance program.", - "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", - "DEPRECATED", - "OTHER", - "DELETED" - ], - "initialStatus": "DRAFT", - "propertiesDefinition": [ - { - "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 - } - ] - }, - "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": [ - "GovernancePolicy", - "GovernanceControl", - "CertificationType", - "DataProcessingPurpose", - "GovernanceDriver", - "LicenseType" - ], - "classificationNames": [], - "relationshipNames": [ - "GovernanceDefinitionMetric", - "ExecutionPointUse", - "GovernedBy", - "GovernanceDefinitionScope" - ], - "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" - ] - }, - "DivergentClassificationAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "8efd6257-a53e-451d-abfc-8e4899c38b1f", - "name": "DivergentClassificationAnnotation", - "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 classification 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": "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" - ] - }, - "Network": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", - "name": "Network", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Inter-connectivity for systems.", - "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": [], - "relationshipNames": [ - "VisibleEndpoint", - "NetworkGatewayLink" - ], - "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" - ] - }, - "Database": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "0921c83f-b2db-4086-a52c-0d10e52ca078", - "name": "Database", - "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 relational data.", - "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": "importedFrom", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 connector where database is imported from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "instance", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 database instance.", - "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 database.", - "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": "databaseVersion", - "attributeDescription": "Deprecated attribute. Use the databaseVersion attribute to define the version number of database.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "databaseVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 database.", - "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 database.", - "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" - ] - }, - "Asset": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "description": "The description of an asset that needs to be catalogued and governed.", - "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": "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 - } - ] - }, - "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": [ - "DataStore", - "Infrastructure", - "Process", - "DeployedReportType", - "DeployedAPI", - "DataFeed", - "DataSet", - "DesignModel" - ], - "classificationNames": [ - "LineageLog", - "MeteringLog", - "AssetOrigin", - "LogAnalysis", - "MobileAsset", - "ReferenceData", - "AuditLog", - "ExceptionBacklog", - "AssetZoneMembership" - ], - "relationshipNames": [ - "DeployedOn", - "DataContentForDataSet", - "AssetSchemaType", - "ConnectionToAsset", - "ServerAssetUse", - "ITInfrastructureProfile", - "SoftwarePackageDependency", - "AssetLocation", - "ValidValuesImplementation", - "AssociatedLog", - "ProcessOutput", - "AssetDiscoveryReport" - ], - "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" - ] - }, - "ObjectAttribute": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ccb408c0-582e-4a3a-a926-7082d53bb669", - "name": "ObjectAttribute", - "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": "An attribute in an object 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" - ] - }, - "SoftwareService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f3f69251-adb1-4042-9d95-70082f95a028", - "name": "SoftwareService", - "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": "Defines a capability that provides externally callable functions to other services.", - "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": [ - "SecurityService", - "MetadataAccessService", - "MetadataRepositoryService", - "UserViewService", - "MetadataIntegrationService", - "ApplicationService", - "EngineHostingService" - ], - "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" - ] - }, - "SemanticAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "0b494819-28be-4604-b238-3af20963eea6", - "name": "SemanticAnnotation", - "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 of likely mappings to Glossary Terms for 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": "informalTerm", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Suggested term based on the analysis.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "candidateGlossaryTermGUIDs", - "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 potentially matching glossary terms.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "informalCategory", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Suggested category based on the analysis.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "candidateGlossaryCategoryGUIDs", - "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 potentially matching glossary categories.", - "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" - ] - }, - "AssetOwner": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28eeee285", - "name": "AssetOwner", - "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 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" - }, - "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" - ] - }, - "MetadataIntegrationService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "92f7fe27-cd2f-441c-a084-156821aa5bca", - "name": "MetadataIntegrationService", - "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 exchanges metadata between servers.", - "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" - ] - }, - "BusinessImperative": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "bb094b5e-0934-4d8b-8727-48eb5d241a46", - "name": "BusinessImperative", - "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": "A mandatory goal that must be met by the business for it to be successful.", - "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" - ] - }, - "NetworkGateway": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "9bbae94d-e109-4c96-b072-4f97123f04fd", - "name": "NetworkGateway", - "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 connection point enabling network traffic to pass between two networks.", - "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": "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": [ - "NetworkGatewayLink" - ], - "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" - ] - }, - "SecurityAccessControl": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f53bd594-5f75-4cf9-9f77-f5c35396590e", - "name": "SecurityAccessControl", - "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 technical control that defines who has access to the attach element.", - "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": "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" - ] - }, - "ContributionRecord": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28cccd285", - "name": "ContributionRecord", - "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 record of the contribution of an individual.", - "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": "isPublic", - "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 the contribution visible to other collaborators?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "karmaPoints", - "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": "Points capturing a person's engagement with open metadata.", - "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": [ - "PersonalContribution" - ], - "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" - ] - }, - "ParquetFile": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "97cba3a0-1dfd-4129-82b6-798de3eec0a4", - "name": "ParquetFile", - "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 which is formatted using the Apache Parquet format.", - "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": "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" - ] - }, - "DesignModelGroup": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "b144ee2a-fa71-4897-b51a-dd5239c26910", - "name": "DesignModelGroup", - "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": "A collection of related design model elements within a model.", - "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": [ - "DesignModelGroupMembership" - ], - "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" - ] - }, - "DataProcessingPurpose": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", - "name": "DataProcessingPurpose", - "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": "Expected outcome, service or value from processing.", - "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": [ - "ApprovedPurpose", - "PermittedProcessing" - ], - "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" - ] - }, - "DataItemOwner": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "69836cfd-39b8-460b-8727-b04e19210069", - "name": "DataItemOwner", - "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 particular type 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": "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" - ] - }, - "DataField": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "name": "DataField", - "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": "A description of a data field discovered within 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": "dataFieldName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 the data field.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "dataFieldSortOrder", - "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": "Sort order for the values of the data field.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "dataFieldType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 field.", - "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": "Default value that is added to the field if no value is specified.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "dataFieldDescription", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Optional descriptive information about a data field.", - "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": "dataFieldAliases", - "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": "Optional list of aliases for the data field.", - "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 - } - ] - }, - "inheritedAttributes": [], - "subTypeNames": [], - "classificationNames": [], - "relationshipNames": [ - "DataFieldAnalysis", - "SchemaAttributeDefinition", - "DiscoveredDataField", - "DiscoveredNestedDataField", - "DiscoveredNestedDataField" - ], - "inheritedRelationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "HostCluster": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890", - "name": "HostCluster", - "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 group of hosts operating together to provide a scalable 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": [ - "HadoopCluster", - "KubernetesCluster" - ], - "classificationNames": [], - "relationshipNames": [ - "HostClusterMember" - ], - "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" - ] - }, - "TeamLeader": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "36db26d5-abb2-439b-bc15-d62d373c5db6", - "name": "TeamLeader", - "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 leading a team.", - "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" - ] - }, - "RelationshipAdviceAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "740f07dc-4ee8-4c2a-baba-efb55c73eb68", - "name": "RelationshipAdviceAnnotation", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", - "name": "DataFieldAnnotation", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A recommendation of the relationships that could be added to all or part 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": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propertiesDefinition": [ - { - "headerVersion": 1, - "attributeName": "relationshipTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 potential relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "relationshipProperties", - "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 to add to the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "relatedEntityGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "entity that should be linked to the asset being analyzed", - "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" - ] - }, - "InformalTag": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ba846a7b-2955-40bf-952b-2793ceca090a", - "name": "InformalTag", - "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 descriptive tag for 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": "isPublic", - "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 the tag visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "tagName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Descriptive name of the tag.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "tagDescription", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "More detail on the meaning of the tag.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ] - }, - "inheritedAttributes": [], - "subTypeNames": [], - "classificationNames": [], - "relationshipNames": [ - "AttachedTag" - ], - "inheritedRelationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "GovernanceStatusLevel": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "a518de03-0f72-4944-9cd5-e05b43ae9c5e", - "name": "GovernanceStatusLevel", - "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 value to represent a specific level of status in a governance element.", - "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": "levelIdentifier", - "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": "Numeric value for the classification level", - "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 descriptive name 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": "Explanation of the meaning of this level of the classification", - "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" - ] - }, - "Application": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "58280f3c-9d63-4eae-9509-3f223872fb25", - "name": "Application", - "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 server capability supporting a specific business function.", - "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": "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" - ] - }, - "Person": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", - "name": "Person", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", - "name": "ActorProfile", - "status": "ACTIVE_TYPEDEF" - }, - "description": "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": "preferredLanguage", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Spoken or written language preferred by the person.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "employeeType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 used by employer typically to describe the type of employment contract.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "surname", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 family name of the person.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "initials", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "First letter of each of the person's given names.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "jobTitle", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Role or level in the organization.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "givenNames", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 strings that are the part of a person's name that is not their surname.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "fullName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 or official name of the individual (if different from known name).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "isPublic", - "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 the profile visible to other collaborators?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "pronouns", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 pronouns to use when addressing this person.", - "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": "The courtesy title for the person.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "employeeNumber", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 unique identifier of the person used by their employer.", - "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": [], - "classificationNames": [], - "relationshipNames": [ - "PersonalContribution", - "PersonRoleAppointment", - "Peer", - "Peer" - ], - "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" - ] - }, - "EnforcementPointDefinition": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "e87ff806-bb9c-4c5d-8106-f38f2dd21037", - "name": "EnforcementPointDefinition", - "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 change is made to enforce a governance requirement.", - "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" - ] - }, - "VirtualMachine": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "28452091-6b27-4f40-8e31-47ce34f58387", - "name": "VirtualMachine", - "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 virtual machine that uses a hypervisor to virtualize hardware.", - "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" - ] - }, - "ApplicationService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "5b7f340e-7dc9-45c0-a636-c20605147c94", - "name": "ApplicationService", - "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": "A software service supporting a single reusable business function.", - "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" - ] - }, - "VirtualContainer": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", - "name": "VirtualContainer", - "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": "Container-based virtual host.", - "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": [ - "DockerContainer" - ], - "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" - ] - }, - "GovernanceDriver": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", - "name": "GovernanceDriver", - "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 reason for having the governance program.", - "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": [ - "RegulationArticle", - "Regulation", - "BusinessImperative", - "Threat", - "GovernanceStrategy" - ], - "classificationNames": [], - "relationshipNames": [ - "GovernanceDriverLink", - "GovernanceDriverLink", - "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" - ] - }, - "DivergentAttachmentRelationshipAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "5613677a-865f-474e-8044-4167fa5a31b9", - "name": "DivergentAttachmentRelationshipAnnotation", - "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 relationships 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": "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": "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" - ] - }, - "Organization": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "50a61105-35be-4ee3-8b99-bdd958ed0685", - "name": "Organization", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "name": "Team", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Describes a specific organization.", - "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 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 - }, - { - "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": [], - "classificationNames": [], - "relationshipNames": [], - "inheritedRelationshipNames": [ - "UsedInContext", - "AttachedComment", - "MoreInformation", - "MoreInformation", - "DigitalServiceOperator", - "ProcessCall", - "ProcessCall", - "PeerDuplicateLink", - "PeerDuplicateLink", - "RelatedIntegrationReport", - "SourcedFrom", - "SourcedFrom", - "TranslationLink", - "ExternalIdScope", - "OrganizationalCapability", - "DataFlow", - "DataFlow", - "CollectionMembership", - "ApprovedPurpose", - "TargetForAction", - "Stakeholder", - "Stakeholder", - "RelationshipAnnotation", - "RelationshipAnnotation", - "DataProcessingSpecification", - "GovernanceActionRequestSource", - "ImplementedBy", - "ImplementedBy", - "ReferenceableFacet", - "ContactThrough", - "License", - "DigitalServiceProduct", - "ProfileIdentity", - "ToDoSource", - "DataProcessingTarget", - "ReferenceValueAssignment", - "Actions", - "TeamMembership", - "TeamLeadership", - "ControlFlow", - "ControlFlow", - "AssociatedSnippet", - "ExternalIdLink", - "ResourceList", - "ResourceList", - "DesignModelImplementation", - "AssignmentScope", - "AssignmentScope", - "AssociatedLog", - "ExternalReferenceLink", - "MediaReference", - "AgreementItem", - "TeamStructure", - "TeamStructure", - "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" - ] - }, - "Meeting": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "6bf90c79-32f4-47ad-959c-8fff723fe744", - "name": "Meeting", - "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": "Two or more people come together to discuss a topic, agree and action or exchange information.", - "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": "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 of the meeting.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "startTime", - "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 time of the meeting.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "endTime", - "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": "End time of the meeting.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "objective", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Reason for the meeting and intended outcome.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "minutes", - "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": "Description of what happened at the meeting.", - "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": [ - "Meetings" - ], - "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" - ] - }, - "GovernanceAction": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", - "name": "GovernanceAction", - "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 governance action that has been created to support the active governance of the open metadata ecosystem and/or digital landscape.", - "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": "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 belongs to.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "completionGuards", - "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 returned by the governance action service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 request type used to call the service.", - "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 governance action.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mandatoryGuards", - "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 list of guards that must be received before this governance action can progress.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestParameters", - "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 configure the governance service for this type of request.", - "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 action.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "governanceActionTypeGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 governance action type that initiated this request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "governanceActionTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 name of the governance action type that initiated this request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "executorEngineGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 governance engine nominated to run the request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "executorEngineName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 governance engine nominated to run the request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "actionStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", - "name": "GovernanceActionStatus", - "description": "Defines the current execution status of a governance action.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Requested", - "description": "The governance action has been created and is pending." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Approved", - "description": "The governance action is approved to run." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Waiting", - "description": "The governance action is waiting for its start time or the right conditions to run." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Activating", - "description": "The governance service for the governance action is being initialized in the governance engine." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "InProgress", - "description": "The governance engine is running the associated governance service for the governance action." - }, - { - "headerVersion": 1, - "ordinal": 10, - "value": "Actioned", - "description": "The governance service for the governance action has successfully completed processing." - }, - { - "headerVersion": 1, - "ordinal": 11, - "value": "Invalid", - "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." - }, - { - "headerVersion": 1, - "ordinal": 12, - "value": "Ignored", - "description": "The governance action has not been run because a different governance action was chosen." - }, - { - "headerVersion": 1, - "ordinal": 13, - "value": "Failed", - "description": "The governance service for the governance action failed to execute." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Undefined or unknown governance action status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Current lifecycle state of the governance action.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "processName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 name of the process that initiated this request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "receivedGuards", - "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 received from the previous governance action service(s).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "completionMessage", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Message to provide additional information on the results of running the governance service or the reasons for its failure.", - "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": "processingEngineUserId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Governance engine responsible for this governance action.", - "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 - } - ] - }, - "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": [ - "TargetForAction", - "GovernanceActionRequestSource", - "NextGovernanceAction", - "NextGovernanceAction" - ], - "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" - ] - }, - "DataFieldAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", - "name": "DataFieldAnnotation", - "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 collection of properties about 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" - }, - "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": [ - "DataProfileAnnotation", - "RequestForAction", - "DataClassAnnotation", - "ClassificationAnnotation", - "FingerprintAnnotation", - "QualityAnnotation", - "SemanticAnnotation", - "RelationshipAdviceAnnotation", - "DataProfileLogAnnotation" - ], - "classificationNames": [], - "relationshipNames": [ - "DataFieldAnalysis" - ], - "inheritedRelationshipNames": [ - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "RelatedIntegrationReport", - "DiscoveredAnnotation", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "DataProfileLogAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "368e6fb3-7323-4f81-a723-5182491594bd", - "name": "DataProfileLogAnnotation", - "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 link to a log file containing properties about 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" - }, - "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": [ - "DataProfileLogFile" - ], - "inheritedRelationshipNames": [ - "DataFieldAnalysis", - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "RelatedIntegrationReport", - "DiscoveredAnnotation", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "OpenDiscoveryEngine": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "be650674-790b-487a-a619-0a9002488055", - "name": "OpenDiscoveryEngine", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", - "name": "GovernanceEngine", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server capability for running open discovery services.", - "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" - }, - "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": [ - "DiscoveryEngineReport" - ], - "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" - ] - }, - "QueryDataContainer": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "b55c2740-2d41-4433-a099-596c8e9b7bf6", - "name": "QueryDataContainer", - "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 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" - ] - }, - "LogFile": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ff4c8484-9127-464a-97fc-99579d5bc429", - "name": "LogFile", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Identifies a data file as one containing log records.", - "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 log file.", - "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 log 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": [], - "classificationNames": [], - "relationshipNames": [ - "DataProfileLogFile" - ], - "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" - ] - }, - "SolutionComponent": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", - "name": "SolutionComponent", - "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 a well-defined capability within a solution.", - "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 component.", - "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 component.", - "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 component.", - "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": [ - "SolutionComposition", - "SolutionComposition", - "SolutionBlueprintComposition", - "SolutionComponentPort" - ], - "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" - ] - }, - "SchemaTypeChoice": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", - "name": "SchemaTypeChoice", - "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 list of alternative schema types for attribute.", - "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": [ - "EventTypeList" - ], - "classificationNames": [], - "relationshipNames": [ - "SchemaTypeOption" - ], - "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" - ] - }, - "GovernanceClassificationLevel": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "8af91d61-2ae8-4255-992e-14d7f745a556", - "name": "GovernanceClassificationLevel", - "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 value to represent a specific level in a governance classification definition.", - "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": "levelIdentifier", - "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": "Numeric value for the classification level", - "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 descriptive name 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": "Explanation of the meaning of this level of the classification", - "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" - ] - }, - "DocumentSchemaAttribute": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "b5cefb7e-b198-485f-a1d7-8e661012499b", - "name": "DocumentSchemaAttribute", - "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 hierarchical 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": [], - "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" - ] - }, - "SoftwareServer": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", - "name": "SoftwareServer", - "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 applications and data stores.", - "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": "serverVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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.", - "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.", - "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.", - "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": "serverVersion", - "attributeDescription": "Deprecated attribute. Use the serverVersion attribute to define the version number of software server.", - "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'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.", - "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": [ - "CloudTenant" - ], - "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" - ] - }, - "ExecutionPointDefinition": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", - "name": "ExecutionPointDefinition", - "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 an activity that supports the implementation of a governance requirement.", - "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": "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 - } - ] - }, - "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": [ - "ControlPointDefinition", - "VerificationPointDefinition", - "EnforcementPointDefinition" - ], - "classificationNames": [], - "relationshipNames": [ - "ExecutionPointUse" - ], - "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" - ] - }, - "DockerContainer": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "9882b8aa-eba3-4a30-94c6-43117efd11cc", - "name": "DockerContainer", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", - "name": "VirtualContainer", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A virtual container using the docker platform.", - "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" - ] - }, - "RelatedMedia": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "747f8b86-fe7c-4c9b-ba75-979e093cc307", - "name": "RelatedMedia", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", - "name": "ExternalReference", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Images, video or sound media.", - "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": "mediaTypeOtherId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 code (typically a valid value definition) that defines the media type.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "defaultMediaUsage", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "c6861a72-7485-48c9-8040-876f6c342b61", - "name": "MediaUsage", - "description": "Defines how a related media reference should be used.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Icon", - "description": "Provides a small image to represent the asset in tree views and graphs." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Thumbnail", - "description": "Provides a small image about the asset that can be used in lists." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Illustration", - "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "UsageGuidance", - "description": "Provides guidance to a person on how to use the asset." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another usage." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Default media usage by a consumer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mediaType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "9548390c-69f5-4dc6-950d-6fdffb257b56", - "name": "MediaType", - "description": "Defines the type of media.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Image", - "description": "The media is an image." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Audio", - "description": "The media is an audio recording." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Document", - "description": "The media is a text document, probably rich text." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Video", - "description": "The media is a video recording." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of media, probably not supported." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Type of media.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "defaultMediaUsageOtherId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 code (typically a valid value definition) that defines the media use.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mediaUsage", - "attributeType": { - "class": "CollectionDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "COLLECTION", - "guid": "0103fe10-98b0-4910-8ee0-21d529f7ff6d", - "name": "array", - "description": "An array of integers.", - "collectionDefCategory": "OM_COLLECTION_ARRAY", - "argumentCount": 1, - "argumentTypes": [ - "OM_PRIMITIVE_TYPE_INT" - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "defaultMediaUsage", - "attributeDescription": "Type of recommended media usage.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ] - }, - "inheritedAttributes": [ - { - "headerVersion": 1, - "attributeName": "pageRange", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "copyright", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Copyright statement associated with this external source.", - "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 to use when displaying reference in a list.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationNumbers", - "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", - "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 external source. For example, its significance and use.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "edition", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 edition for this external source.", - "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": "referenceVersion", - "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceTitle", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 publication title of the external source.", - "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": "Network address where this external source can be accessed from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceAbstract", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Summary of the key messages in the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationSeries", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 journal or series of publications that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationCity", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "City where the publishers are based.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "license", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 license associated with this external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "numberOfPages", - "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 pages that this external source has.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationSeriesVolume", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 volume in the publication series that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "organization", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 revision or version of the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "attribution", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Attribution statement to use when consuming this external resource.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publisher", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 publisher responsible for producing this external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationYear", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Year when the publication of this version/edition of the external source was published.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationDate", - "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 when this version/edition of this external source was published.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "authors", - "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 authors for the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "firstPublicationDate", - "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 of the first published version/edition of this external source.", - "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": [ - "MediaReference" - ], - "inheritedRelationshipNames": [ - "UsedInContext", - "AttachedComment", - "MoreInformation", - "MoreInformation", - "DigitalServiceOperator", - "ProcessCall", - "ProcessCall", - "PeerDuplicateLink", - "PeerDuplicateLink", - "RelatedIntegrationReport", - "SourcedFrom", - "SourcedFrom", - "TranslationLink", - "ExternalIdScope", - "DataFlow", - "DataFlow", - "CollectionMembership", - "ApprovedPurpose", - "ContractLink", - "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", - "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" - ] - }, - "EnterpriseAccessLayer": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "39444bf9-638e-4124-a5f9-1b8f3e1b008b", - "name": "EnterpriseAccessLayer", - "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": "Repository services for the Open Metadata Access Services (OMAS) supporting federated queries and aggregated events from the connected cohorts.", - "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": "accessedMetadataCollectionId", - "attributeDescription": "Deprecated attribute. Use the accessedMetadataCollectionId attribute to define the unique identifier for the metadata collection accessed through this enterprise access layer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "topicRoot", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Root of topic names used by the Open Metadata access Services (OMASs).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "accessedMetadataCollectionId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 accessed through this enterprise access layer.", - "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": [], - "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" - ] - }, - "DivergentAttachmentValueAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2", - "name": "DivergentAttachmentValueAnnotation", - "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 the property values in attachments 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": "divergentPropertyNames", - "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" - ] - }, - "Annotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", - "name": "Annotation", - "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": "A set of results from a discovery service describing related properties 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": "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 - } - ] - }, - "inheritedAttributes": [], - "subTypeNames": [ - "SchemaAnalysisAnnotation", - "DataFieldAnnotation", - "SuspectDuplicateAnnotation", - "DataSourceMeasurementAnnotation", - "DivergentDuplicateAnnotation" - ], - "classificationNames": [], - "relationshipNames": [ - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "DiscoveredAnnotation" - ], - "inheritedRelationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "GovernanceRule": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", - "name": "GovernanceRule", - "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 logic expression.", - "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": [ - "NamingStandardRule" - ], - "classificationNames": [], - "relationshipNames": [ - "GovernanceRuleImplementation" - ], - "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" - ] - }, - "OpenDiscoveryAnalysisReport": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", - "name": "OpenDiscoveryAnalysisReport", - "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 set of results from an open discovery service.", - "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": "discoveryServiceStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "b2fdeddd-24eb-4e9c-a2a4-2693828d4a69", - "name": "DiscoveryServiceRequestStatus", - "description": "Defines the progress or completion of a requested discovery service.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery service is waiting to execute." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Activating", - "description": "Discovery service is being initialized in the discovery engine." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "InProgress", - "description": "Discovery service is executing." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Failed", - "description": "Discovery service has failed." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Completed", - "description": "Discovery service has completed successfully." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Other", - "description": "Discovery service has a status that is not covered by this enum." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Unknown", - "description": "Discovery service status is unknown." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery service is waiting to execute." - } - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of a requested discovery service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "discoveryRequestStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "ecb48ca2-4d29-4de9-99a1-bc4db9816d68", - "name": "DiscoveryRequestStatus", - "description": "Defines the progress or completion of a discovery request.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery request is waiting to execute." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "InProgress", - "description": "Discovery request is executing." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Failed", - "description": "Discovery request has failed." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Completed", - "description": "Discovery request has completed successfully." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Unknown", - "description": "Discovery request status is unknown." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery request is waiting to execute." - } - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "discoveryServiceStatus", - "attributeDescription": "Deprecated property.", - "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 report.", - "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": "discoveryRequestStep", - "attributeType": { - "class": "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": "discoveryAnalysisStep", - "attributeDescription": "Deprecated property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "executionDate", - "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 that the analysis was run.", - "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 content of the report.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "discoveryAnalysisStep", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 current processing step of a running discovery service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "analysisParameters", - "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 parameters used to drive the analysis.", - "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": [ - "DiscoveredAnnotation", - "DiscoveryEngineReport", - "DiscoveryInvocationReport", - "AssetDiscoveryReport" - ], - "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" - ] - }, - "DesignModel": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", - "name": "DesignModel", - "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 curated collection of design model elements.", - "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": "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": "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.", - "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": "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": [ - "ConceptModel" - ], - "relationshipNames": [ - "DesignModelOwnership" - ], - "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" - ] - }, - "OpenMetadataRoot": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "description": "Common root for all open metadata entity types.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE" - }, - "inheritedAttributes": [], - "subTypeNames": [ - "Referenceable", - "IntegrationReport", - "SearchKeyword", - "Rating", - "TranslationDetail", - "DataField", - "InformalTag", - "Annotation", - "Like", - "AnnotationReview" - ], - "classificationNames": [ - "Memento", - "Anchors" - ], - "relationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedRelationshipNames": [], - "inheritedClassificationNames": [] - }, - "ServiceLevelObjective": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "22c4e433-1b87-4446-840a-03f83d2dc113", - "name": "ServiceLevelObjective", - "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": "The set of behavior related objectives that an asset or capability seeks to achieve.", - "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": "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" - ] - }, - "VirtualConnection": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "82f9c664-e59d-484c-a8f3-17088c23a2f3", - "name": "VirtualConnection", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", - "name": "Connection", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A connector for a virtual resource that needs to retrieve data from multiple places.", - "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": "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 - }, - { - "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": [ - "EmbeddedConnection" - ], - "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", - "EmbeddedConnection", - "ConnectionToAsset", - "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", - "ConnectionEndpoint", - "LineageMapping", - "LineageMapping", - "ValidValuesAssignment", - "Certification", - "ConsolidatedDuplicateLink", - "ConsolidatedDuplicateLink", - "ConnectionConnectorType", - "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" - ] - }, - "TabularColumn": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", - "name": "TabularColumn", - "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 column attribute for a table oriented 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": [ - "RelationalColumn", - "TabularFileColumn" - ], - "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" - ] - }, - "SuspectDuplicateAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f703a621-4078-4c07-ab22-e7c334b94235", - "name": "SuspectDuplicateAnnotation", - "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": "Annotation linking referenceables that are suspected of being 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": "duplicateAnchorGUIDs", - "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 unique identifiers for the suspects.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "matchingPropertyNames", - "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 properties that are the same in the suspects.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "matchingClassificationNames", - "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 classifications that are the same in the suspects.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "matchingAttachmentGUIDs", - "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 attachments that are the same in the suspects.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "matchingRelationshipGUIDs", - "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 direct relationships that are the same in the suspects.", - "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": [ - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "RelatedIntegrationReport", - "DiscoveredAnnotation", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "SchemaAttribute": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A schema element that nests another schema type in its parent.", - "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": "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 - } - ] - }, - "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": [ - "RelationalTable", - "EventSchemaAttribute", - "DisplayDataField", - "APIParameter", - "QueryDataField", - "DisplayDataContainer", - "GraphVertex", - "ObjectAttribute", - "QueryDataContainer", - "DocumentSchemaAttribute", - "TabularColumn", - "GraphEdge" - ], - "classificationNames": [ - "TypeEmbeddedAttribute" - ], - "relationshipNames": [ - "SchemaAttributeDefinition", - "NestedSchemaAttribute", - "NestedSchemaAttribute", - "AttributeForSchema", - "SchemaAttributeType" - ], - "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" - ] - }, - "GraphEdge": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", - "name": "GraphEdge", - "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" - ] - }, - "Threat": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "4ca51fdf-9b70-46b1-bdf6-8860429e78d8", - "name": "Threat", - "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": "A description of a specific threat.", - "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" - ] - }, - "EventType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "8bc88aba-d7e4-4334-957f-cfe8e8eadc32", - "name": "EventType", - "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 description of an event (message)", - "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" - ] - }, - "OperatingPlatform": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", - "name": "OperatingPlatform", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Characteristics of the operating system in use within a host.", - "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": "byteOrdering", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "e5612c3a-49bd-4148-8f67-cfdf145d5fd8", - "name": "Endianness", - "description": "Defines the sequential order in which bytes are arranged into larger numerical values when stored in memory or when transmitted over digital links.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "BigEndian", - "description": "Bits or bytes order from the big end." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "LittleEndian", - "description": "Bits or bytes ordered from the little end." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Definition of the hardware byte ordering.", - "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 operating platform.", - "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 operating platform.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "operatingSystem", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 operating system running on this operating platform.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "endianness", - "attributeType": { - "class": "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": "byteOrdering", - "attributeDescription": "Deprecated attribute. Use the byteOrdering attribute instead.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "operatingSystemPatchLevel", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Level of patches applied to the operating system.", - "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": [ - "OperatingPlatformManifest", - "OperatingPlatformUse" - ], - "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" - ] - }, - "RelationalTableType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98", - "name": "RelationalTableType", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4", - "name": "ComplexSchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A table type for a relational database.", - "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" - ] - }, - "DivergentValueAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "b86cdded-1078-4e42-b6ba-a718c2c67f62", - "name": "DivergentValueAnnotation", - "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 the property values 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": "divergentPropertyNames", - "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" - ] - }, - "OpenDiscoveryService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", - "name": "OpenDiscoveryService", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "191d870c-26f4-4310-a021-b8ca8772719d", - "name": "GovernanceService", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A pluggable component for discovering properties about 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": [ - "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": [ - "OpenDiscoveryPipeline" - ], - "classificationNames": [], - "relationshipNames": [ - "DiscoveryInvocationReport" - ], - "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" - ] - }, - "SoftwareCapability": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", - "name": "SoftwareCapability", - "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 software capability such as an software service or engine.", - "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": "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 - } - ] - }, - "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": [ - "SoftwareServerCapability" - ], - "classificationNames": [ - "CloudService", - "ProcessingState" - ], - "relationshipNames": [ - "ServerAssetUse", - "SupportedSoftwareCapability" - ], - "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" - ] - }, - "Like": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "deaa5ca0-47a0-483d-b943-d91c76744e01", - "name": "Like", - "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": "Boolean type of rating expressing a favorable impression.", - "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": "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 - } - ] - }, - "inheritedAttributes": [], - "subTypeNames": [], - "classificationNames": [], - "relationshipNames": [ - "AttachedLike" - ], - "inheritedRelationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "StructSchemaType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "a13b409f-fd67-4506-8d94-14dfafd250a4", - "name": "StructSchemaType", - "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 that has a list of attributes, typically of different 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": [], - "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" - ] - }, - "GovernanceActionEngine": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "5d74250a-57ca-4197-9475-8911f620a94e", - "name": "GovernanceActionEngine", - "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 collection of related governance services of the same type from the Governance Action Framework (GAF).", - "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", - "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" - ] - }, - "ITInfrastructure": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "c19746ac-b3ec-49ce-af4b-83348fc55e07", - "name": "Infrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Hardware and base software that supports an IT 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": "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": [ - "SoftwareServerPlatform", - "Network", - "SoftwareServer", - "Host" - ], - "classificationNames": [ - "StewardshipServer", - "Webserver", - "RepositoryProxy", - "ApplicationServer", - "DatabaseServer", - "ServerPurpose", - "MetadataServer", - "GovernanceDaemon", - "IntegrationServer" - ], - "relationshipNames": [ - "DeployedOn", - "ServerEndpoint", - "OperatingPlatformUse", - "SupportedSoftwareCapability" - ], - "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" - ] - }, - "APIOperation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", - "name": "APIOperation", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Description of an API operation.", - "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": [ - "APIResponse", - "APIOperations", - "APIHeader", - "APIRequest" - ], - "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" - ] - }, - "Engine": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "name": "Engine", - "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 programmable engine for running automated processes.", - "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": "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": [ - "ReportingEngine", - "DataMovementEngine", - "WorkflowEngine", - "AnalyticsEngine", - "DataVirtualizationEngine" - ], - "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" - ] - }, - "SolutionOwner": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "e44d5019-37e5-4965-8b89-2bef412833bf", - "name": "SolutionOwner", - "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 an IT solution.", - "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" - ] - }, - "SolutionPort": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "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 external endpoint for a solution.", - "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 port.", - "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 port.", - "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 port.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "direction", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "4879c96e-26c7-48af-ba92-8277632be733", - "name": "SolutionPortDirection", - "description": "Defines the direction of flow of information through a solution port.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The direction of flow is unknown." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Output", - "description": "The process is producing information through this port." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Input", - "description": "The process is consuming information through this port." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "InOut", - "description": "The process has a call interface attached to this port." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "OutIn", - "description": "The process is issuing a call to an external API through this port." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another direction." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Which way is data flowing?", - "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": [ - "SolutionPortDelegation", - "SolutionPortDelegation", - "SolutionLinkingWire", - "SolutionLinkingWire", - "SolutionPortSchema", - "SolutionComponentPort" - ], - "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" - ] - }, - "KeyStoreCollection": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "979d97dd-6782-4648-8e2a-8982994533e6", - "name": "KeyStoreCollection", - "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 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": "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" - ] - }, - "GovernanceResponsibility": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "89a76b24-deb8-45bf-9304-a578a610326f", - "name": "GovernanceResponsibility", - "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 a responsibility of a person, team or organization that supports 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": [ - "GovernanceResponsibilityAssignment" - ], - "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" - ] - }, - "TabularFileColumn": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "af6265e7-5f58-4a9c-9ae7-8d4284be62bd", - "name": "TabularFileColumn", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", - "name": "TabularColumn", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A column in a tabular file.", - "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" - ] - }, - "NoteEntry": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", - "name": "NoteEntry", - "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 entry in 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", - "propertiesDefinition": [ - { - "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 of the note entry.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "text", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Text of the note entry.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "isPublic", - "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 the note visible to more than the note log authors?", - "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": [ - "AttachedNoteLogEntry" - ], - "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" - ] - }, - "GovernancePrinciple": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "3b7d1325-ec2c-44cb-8db0-ce207beb78cf", - "name": "GovernancePrinciple", - "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 principle related to how data is managed or used that the organization should ensure remains true.", - "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" - ] - }, - "ConceptBead": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", - "name": "ConceptBead", - "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 representation of a person, place or object.", - "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", - "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" - ] - }, - "Catalog": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f4fffcc0-d9eb-4bb9-8aff-0718932f689e", - "name": "Catalog", - "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 descriptions about people, places, digital assets, things, ...", - "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" - ] - }, - "DataSourceMeasurementAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "c85bea73-d7af-46d7-8a7e-cb745910b1df", - "name": "DataSourceMeasurementAnnotation", - "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 summary set of measurements for 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": "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 - } - ] - }, - "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": [ - "DataSourcePhysicalStatusAnnotation" - ], - "classificationNames": [], - "relationshipNames": [], - "inheritedRelationshipNames": [ - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "RelatedIntegrationReport", - "DiscoveredAnnotation", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "PropertyFacet": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "6403a704-aad6-41c2-8e08-b9525c006f85", - "name": "PropertyFacet", - "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": "Additional properties that support a particular vendor or service.", - "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": "schemaVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property facet schema.", - "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 property facet contents.", - "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": "schemaVersion", - "attributeDescription": "Deprecated attribute. Use the schemaVersion attribute to define the version number of the property facet schema.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "properties", - "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 for the property facet.", - "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": [ - "ReferenceableFacet" - ], - "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" - ] - }, - "EngineHostingService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "90880f0b-c7a3-4d1d-93cc-0b877f27cd33", - "name": "EngineHostingService", - "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 services that delegate to a hosted engine.", - "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" - ] - }, - "ReferenceCodeTable": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "201f48c5-4e4b-41dc-9c5f-0bc9742190cf", - "name": "ReferenceCodeTable", - "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 code values and their translations.", - "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" - ] - }, - "TechnicalControl": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec", - "name": "TechnicalControl", - "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 technology.", - "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": [ - "SecurityGroup", - "GovernanceProcess", - "SecurityAccessControl", - "GovernanceRule", - "ServiceLevelObjective" - ], - "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" - ] - }, - "AnnotationReview": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "b893d6fc-642a-454b-beaf-809ee4dd876a", - "name": "AnnotationReview", - "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": "The results of a stewardship review of an annotation.", - "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": "reviewDate", - "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 of the review.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "Steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 identifier for the steward performing the review.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "comment", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Notes provided by the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ] - }, - "inheritedAttributes": [], - "subTypeNames": [], - "classificationNames": [], - "relationshipNames": [ - "AnnotationReviewLink" - ], - "inheritedRelationshipNames": [ - "RelatedIntegrationReport", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "MediaCollection": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "0075d603-1627-41c5-8cae-f5458d1247fe", - "name": "MediaCollection", - "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 group of related media files.", - "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": [ - "GroupedMedia" - ], - "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" - ] - }, - "Collection": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "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 related items.", - "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 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 - } - ] - }, - "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": [ - "NamingStandardRuleSet", - "EventSet", - "SoftwareArchive" - ], - "classificationNames": [ - "GovernanceDomainSet", - "Set", - "ConnectorTypeDirectory", - "Folder", - "IncidentClassifierSet", - "SoftwarePackageManifest", - "GovernanceClassificationSet", - "GovernanceStatusSet" - ], - "relationshipNames": [ - "CollectionMembership", - "OperatingPlatformManifest", - "SoftwarePackageDependency" - ], - "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" - ] - }, - "TabularSchemaType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "248975ec-8019-4b8a-9caf-084c8b724233", - "name": "TabularSchemaType", - "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 table oriented 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" - ] - }, - "GovernanceZone": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "290a192b-42a7-449a-935a-269ca62cfdac", - "name": "GovernanceZone", - "status": "ACTIVE_TYPEDEF", - "version": 5, - "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 assets that are suitable for a particular usage or are governed by a particular 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": "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 of this zone for user interfaces and reports.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "criteria", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 types of assets that belong in this zone.", - "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 zone to the assets matching the criteria.", - "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 zone.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "zoneName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 zone - 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": [], - "relationshipNames": [ - "ZoneHierarchy", - "ZoneHierarchy" - ], - "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" - ] - }, - "RelationalDBSchemaType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f20f5f45-1afb-41c1-9a09-34d8812626a4", - "name": "RelationalDBSchemaType", - "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 relational database.", - "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" - ] - }, - "DivergentDuplicateAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "251e443c-dee0-47fa-8a73-1a9d511915a0", - "name": "DivergentDuplicateAnnotation", - "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": "Annotation documenting differences in the values 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": "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 - } - ] - }, - "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": [ - "DivergentRelationshipAnnotation", - "DivergentClassificationAnnotation", - "DivergentValueAnnotation", - "DivergentAttachmentAnnotation" - ], - "classificationNames": [], - "relationshipNames": [], - "inheritedRelationshipNames": [ - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "RelatedIntegrationReport", - "DiscoveredAnnotation", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "GovernanceApproach": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67", - "name": "GovernanceApproach", - "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 preferred approach to managing or using data.", - "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" - ] - }, - "DivergentAttachmentAnnotation": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6", - "name": "DivergentAttachmentAnnotation", - "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 the attachments 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": "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 - } - ] - }, - "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": [ - "DivergentAttachmentClassificationAnnotation", - "DivergentAttachmentRelationshipAnnotation", - "DivergentAttachmentValueAnnotation" - ], - "classificationNames": [], - "relationshipNames": [], - "inheritedRelationshipNames": [ - "AnnotationReviewLink", - "AnnotationExtension", - "AnnotationExtension", - "RelatedIntegrationReport", - "DiscoveredAnnotation", - "TranslationLink", - "GovernanceActionRequestSource", - "ExternalIdLink", - "CatalogTarget" - ], - "inheritedClassificationNames": [ - "Memento", - "Anchors" - ] - }, - "ObjectSchemaType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "6920fda1-7c07-47c7-84f1-9fb044ae153e", - "name": "ObjectSchemaType", - "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 attribute for an object.", - "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" - ] - }, - "TableDataSet": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "20c45531-5d2e-4eb6-9a47-035cb1067b82", - "name": "TableDataSet", - "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 tabular data source (typically a database table) that is an asset in its own right.", - "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" - ] - }, - "GovernanceStrategy": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf", - "name": "GovernanceStrategy", - "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": "Defines how the governance program and the supporting capabilities are supporting the business strategy.", - "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": "businessImperatives", - "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": "Goals or required outcomes from the business strategy that is supported by the data strategy.", - "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": [], - "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" - ] - }, - "KubernetesCluster": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c", - "name": "KubernetesCluster", - "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 host cluster managing containerized applications.", - "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" - ] - }, - "GovernanceOfficer": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "578a3510-9ad3-45fe-8ada-e4e9572c37c8", - "name": "GovernanceOfficer", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee", - "name": "GovernanceRole", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Person responsible for a governance domain.", - "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": "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" - ] - }, - "LicenseType": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", - "name": "LicenseType", - "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 type of license that sets out specific terms and conditions for the use of an asset.", - "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 rights, terms and conditions associated with the licence.", - "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": [ - "License" - ], - "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" - ] - }, - "ITProfile": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "81394f85-6008-465b-926e-b3fae4668937", - "name": "ITProfile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", - "name": "ActorProfile", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Descriptive details about a processing engine or other IT infrastructure.", - "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 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": [], - "classificationNames": [], - "relationshipNames": [ - "ITInfrastructureProfile" - ], - "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" - ] - }, - "GlossaryTerm": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "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 semantic description of something, such as a concept, object, asset, technology, role or group.", - "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 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 - } - ] - }, - "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": [ - "ControlledGlossaryTerm" - ], - "classificationNames": [ - "SpineAttribute", - "ContextDefinition", - "SpineObject", - "PrimaryCategory", - "ObjectIdentifier", - "DataValue", - "ActivityDescription", - "AbstractConcept", - "ElementSupplement" - ], - "relationshipNames": [ - "UsedInContext", - "ReplacementTerm", - "ReplacementTerm", - "TermTYPEDBYRelationship", - "TermTYPEDBYRelationship", - "Synonym", - "Synonym", - "IsATypeOfRelationship", - "IsATypeOfRelationship", - "RelatedTerm", - "RelatedTerm", - "LibraryTermReference", - "TermAnchor", - "Translation", - "Translation", - "PreferredTerm", - "PreferredTerm", - "ValidValue", - "ValidValue", - "TermCategorization", - "Antonym", - "Antonym", - "GlossaryTermEvolution", - "ISARelationship", - "ISARelationship", - "SemanticAssignment", - "TermHASARelationship", - "TermHASARelationship", - "SupplementaryProperties" - ], - "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" - ] - }, - "APIParameterList": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "ba167b12-969f-49d3-8bea-d04228d9a44b", - "name": "APIParameterList", - "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 list of parameters for an API.", - "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": "required", - "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 parameter list required when calling the API.", - "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", - "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" - ] - }, - "Topic": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "29100f49-338e-4361-b05d-7e4e8e818325", - "name": "Topic", - "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 location for storing and distributing related events.", - "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": "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 - } - ] - }, - "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": [ - "KafkaTopic" - ], - "classificationNames": [], - "relationshipNames": [ - "TopicSubscribers" - ], - "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" - ] - }, - "DeployedConnector": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "c9a183ab-67f4-46a4-8836-16fa041769b7", - "name": "DeployedConnector", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd", - "name": "DeployedSoftwareComponent", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A connector that is configured and deployed to run in a specific software server capability.", - "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": "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": [ - "IntegrationConnector", - "GovernanceService" - ], - "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", - "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" - ] - }, - "IncidentClassifier": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1fad7fe4-5115-412b-ae31-a418e93888fe", - "name": "IncidentClassifier", - "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 definition of a classifier used to label incident reports.", - "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": "classifierLabel", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Label to add to the incident.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classifierIdentifier", - "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": "Option for indicator value associated with the classifier label.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classifierName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 classifier identifier.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classifierDescription", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 meaning of the classifier identifier.", - "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" - ] - }, - "Comment": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", - "name": "Comment", - "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": "Descriptive feedback or discussion 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": "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": "commentType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "06d5032e-192a-4f77-ade1-a4b97926e867", - "name": "CommentType", - "description": "Descriptor for a comment that indicated its intent.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "GeneralComment", - "description": "General comment." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Question", - "description": "A question." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Answer", - "description": "An answer to a previously asked question." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Suggestion", - "description": "A suggestion for improvement." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Experience", - "description": "An account of an experience." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "None of the above." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Type of comment.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "text", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Feedback comments or additional information.", - "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": "06d5032e-192a-4f77-ade1-a4b97926e867", - "name": "CommentType", - "description": "Descriptor for a comment that indicated its intent.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "GeneralComment", - "description": "General comment." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Question", - "description": "A question." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Answer", - "description": "An answer to a previously asked question." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Suggestion", - "description": "A suggestion for improvement." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Experience", - "description": "An account of an experience." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "None of the above." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "commentType", - "attributeDescription": "Deprecated attribute. Use the commentType attribute to describe the type of comment.", - "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": [ - "AttachedComment", - "AcceptedAnswer", - "AcceptedAnswer" - ], - "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" - ] - }, - "GovernanceEngine": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", - "name": "GovernanceEngine", - "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 related governance services of the same type.", - "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": [ - "RepositoryGovernanceEngine", - "OpenDiscoveryEngine", - "GovernanceActionEngine" - ], - "classificationNames": [], - "relationshipNames": [ - "GovernanceActionTypeExecutor", - "SupportedGovernanceService" - ], - "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" - ] - }, - "EventSet": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "bead9aa4-214a-4596-8036-aa78395bbfb1", - "name": "EventSet", - "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": "A collection of related event 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": "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" - ] - }, - "NamingStandardRule": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "52505b06-98a5-481f-8a32-db9b02afabfc", - "name": "NamingStandardRule", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", - "name": "GovernanceRule", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Describes a parsing rule used to create compliant names.", - "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": "namePattern", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 naming standard rule.", - "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": [], - "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", - "GovernanceRuleImplementation", - "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" - ] - }, - "ExternalId": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", - "name": "ExternalId", - "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": "Alternative identifier used in another system.", - "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": "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 used in an external system.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "keyPattern", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", - "name": "KeyPattern", - "description": "Defines the type of identifier used for an asset.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "LocalKey", - "description": "Unique key allocated and used within the scope of a single system." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "RecycledKey", - "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "NaturalKey", - "description": "Key derived from an attribute of the entity, such as email address, passport number." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "MirrorKey", - "description": "Key value copied from another system." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "AggregateKey", - "description": "Key formed by combining keys from multiple systems." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "CallersKey", - "description": "Key from another system can bey used if system name provided." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "StableKey", - "description": "Key value will remain active even if records are merged." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another key pattern." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Management pattern associated with the identifier.", - "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": [ - "ExternalIdScope", - "ExternalIdLink" - ], - "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" - ] - }, - "Host": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", - "name": "Host", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Named IT infrastructure system that supports multiple software servers.", - "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": [ - "BareMetalComputer", - "HostCluster", - "VirtualMachine", - "VirtualContainer" - ], - "classificationNames": [ - "CloudProvider" - ], - "relationshipNames": [ - "HostClusterMember", - "AttachedStorage" - ], - "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" - ] - }, - "InformationView": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "68d7b905-6438-43be-88cf-5de027b4aaaf", - "name": "InformationView", - "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 selected data items from one or more data stores or 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", - "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 view.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "comment", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Comment", - "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 entity.", - "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": "Information View 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": "Information View 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": "Information View 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" - ] - }, - "SubscriberList": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "69751093-35f9-42b1-944b-ba6251ff513d", - "name": "SubscriberList", - "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 a list of endpoints registered to receive events from a topic.", - "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": [ - "TopicSubscribers" - ], - "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" - ] - }, - "TeamMember": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "46db26d5-abb2-538b-bc15-d62d373c5db6", - "name": "TeamMember", - "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 assigned to a team.", - "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" - ] - }, - "SoftwareArchive": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa", - "name": "SoftwareArchive", - "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": "A collection of runnable software components.", - "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": "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" - ] - }, - "DataProcessingAction": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "7f53928f-9148-4710-ad37-47633f33cb08", - "name": "DataProcessingAction", - "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 processing on a single target item.", - "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": "Name of the processing 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": "Brief description of the processing 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": [ - "DataProcessingTarget", - "DetailedProcessingActions" - ], - "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" - ] - }, - "CommunityMember": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "fbd42379-f6c3-4f09-b6f7-378565cda993", - "name": "CommunityMember", - "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 who has joined a community.", - "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" - ] - }, - "OpenDiscoveryPipeline": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "081abe00-740e-4143-b0d5-a1f55450fc22", - "name": "OpenDiscoveryPipeline", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", - "name": "OpenDiscoveryService", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A pluggable component that calls multiple discovery services.", - "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" - }, - "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", - "DiscoveryInvocationReport", - "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" - ] - }, - "NoteLog": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", - "name": "NoteLog", - "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 ordered list of related notes.", - "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 note log.", - "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 note log.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "isPublic", - "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 the note log visible to more than the note log authors?", - "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": [ - "AttachedNoteLogEntry", - "AttachedNoteLog", - "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", - "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" - ] - }, - "ExternalGlossaryLink": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", - "name": "ExternalGlossaryLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "ENTITY_DEF", - "superType": { - "headerVersion": 1, - "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", - "name": "ExternalReference", - "status": "ACTIVE_TYPEDEF" - }, - "description": "The location of a glossary stored outside of the open metadata ecosystem.", - "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": "pageRange", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Range of pages that this reference covers. For example, if it is a journal article, this could be the range of pages for the article in the journal.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "copyright", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Copyright statement associated with this external source.", - "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 to use when displaying reference in a list.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationNumbers", - "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 unique numbers allocated by the publisher for this external source. For example ISBN, ASIN, UNSPSC code.", - "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 external source. For example, its significance and use.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "edition", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 edition for this external source.", - "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": "referenceVersion", - "attributeDescription": "Deprecated attribute. Use the referenceVersion attribute to define the version number of the external reference.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceTitle", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 publication title of the external source.", - "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": "Network address where this external source can be accessed from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceAbstract", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Summary of the key messages in the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationSeries", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 journal or series of publications that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationCity", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "City where the publishers are based.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "license", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 license associated with this external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "numberOfPages", - "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 pages that this external source has.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationSeriesVolume", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 volume in the publication series that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "organization", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 that this external source is from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 revision or version of the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "attribution", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Attribution statement to use when consuming this external resource.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publisher", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 publisher responsible for producing this external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationYear", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Year when the publication of this version/edition of the external source was published.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "publicationDate", - "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 when this version/edition of this external source was published.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "authors", - "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 authors for the external source.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "firstPublicationDate", - "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 of the first published version/edition of this external source.", - "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": [ - "LibraryTermReference", - "LibraryCategoryReference", - "ExternallySourcedGlossary" - ], - "inheritedRelationshipNames": [ - "UsedInContext", - "AttachedComment", - "MoreInformation", - "MoreInformation", - "DigitalServiceOperator", - "ProcessCall", - "ProcessCall", - "PeerDuplicateLink", - "PeerDuplicateLink", - "RelatedIntegrationReport", - "SourcedFrom", - "SourcedFrom", - "TranslationLink", - "ExternalIdScope", - "DataFlow", - "DataFlow", - "CollectionMembership", - "ApprovedPurpose", - "ContractLink", - "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", - "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" - ] - }, - "DataClass": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "name": "DataClass", - "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 logical data type specification.", - "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": "Display name of the data class.", - "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 data class.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classCode", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 processing class that can identify the data class.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "userDefined", - "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": "Defined by owning organization rather than vendor.", - "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": "Logical group for this data class.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "specification", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Parsing string used to identify values of this data class.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "specificationDetails", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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": "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": "Typical data type used to store this value.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "defaultThreshold", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "52aeb769-37b7-4b30-b949-ddc7dcebcfa2", - "name": "float", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_FLOAT" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Match threshold that a data field is expected to achieve to be assigned this data class.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "example", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Example of a data value that matches this data class.", - "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": [ - "DataClassComposition", - "DataClassComposition", - "DataClassHierarchy", - "DataClassHierarchy", - "DataClassAssignment" - ], - "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" - ] - }, - "GovernanceService": { - "entityDef": { - "class": "EntityDef", - "headerVersion": 1, - "guid": "191d870c-26f4-4310-a021-b8ca8772719d", - "name": "GovernanceService", - "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 connector that performs some governance operation.", - "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": "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": [ - "RepositoryGovernanceService", - "GovernanceActionService", - "OpenDiscoveryService" - ], - "classificationNames": [], - "relationshipNames": [ - "SupportedGovernanceService" - ], - "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" - ] - } - }, - "relationships": { - "UsedInContext": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2dc524d2-e29f-4186-9081-72ea956c75de", - "name": "UsedInContext", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between glossary terms where on describes the context where the other one is valid to use.", - "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": "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contextRelevantTerms", - "attributeDescription": "Glossary terms used in this specific context.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInContexts", - "attributeDescription": "Elements describing the contexts where this term is used.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedComment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0d90501b-bf29-4621-a207-0c8c953bdac9", - "name": "AttachedComment", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a comment to an item, or another comment.", - "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": "isPublic", - "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 the attached comment visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "commentAnchor", - "attributeDescription": "Element that this comment relates.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", - "name": "Comment", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "comments", - "attributeDescription": "Accumulated comments.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProcessPort": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2", - "name": "ProcessPort", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a process and one of its ports.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "name": "Process", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "owningProcess", - "attributeDescription": "Process linked to the port", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", - "name": "Port", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "ports", - "attributeDescription": "Port to the process", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataFieldAnalysis": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "833e849d-eda2-40bb-9e6b-c3ca0b56d581", - "name": "DataFieldAnalysis", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Attached data field level annotations.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", - "name": "DataFieldAnnotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataFieldAnnotations", - "attributeDescription": "The annotations for this data field.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "name": "DataField", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "annotatedDataFields", - "attributeDescription": "Data fields with addition properties attached.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DeployedOn": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6932ba75-9522-4a06-a4a4-ee60a4df6aab", - "name": "DeployedOn", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies an IT Infrastructure asset that is deployed to a specific destination.", - "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": "deploymentTime", - "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": "Time that the IT Infrastructure was deployed.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployer", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person, organization or engine that deployed the IT Infrastructure.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployerTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 of deployer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployerPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Identifying property name of deployer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deploymentStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", - "name": "OperationalStatus", - "description": "Defines whether a component is operational.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Disabled", - "description": "The component is not operational." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Enabled", - "description": "The component is operational." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The operational status of the the IT Infrastructure on the specific destination.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "deployedElement", - "attributeDescription": "IT infrastructure deployed to this asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "deployedTo", - "attributeDescription": "Deployment destination.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AnnotationReviewLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5d3c2fb7-fa04-4d77-83cb-fd9216a07769", - "name": "AnnotationReviewLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Review results for an annotation.", - "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": "annotationStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", - "name": "AnnotationStatus", - "description": "Defines the status of an annotation.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "New", - "description": "The annotation is new." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Reviewed", - "description": "The annotation has been reviewed by a steward." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Approved", - "description": "The annotation has been approved." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Actioned", - "description": "The request has been actioned." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Invalid", - "description": "The annotation is invalid or incorrect." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Ignore", - "description": "The annotation should be ignored." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Status of the processing as a result of the annotation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", - "name": "Annotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "reviewedAnnotations", - "attributeDescription": "The annotations being reviewed.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b893d6fc-642a-454b-beaf-809ee4dd876a", - "name": "AnnotationReview", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "annotationReviews", - "attributeDescription": "The feedback about the annotations.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProjectCharterLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "f081808d-545a-41cb-a9aa-c4f074a16c78", - "name": "ProjectCharterLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a Project with its Charter.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "projects", - "attributeDescription": "The projects guided by this charter.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f96b5a32-42c1-4a74-8f77-70a81cec783d", - "name": "ProjectCharter", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "charter", - "attributeDescription": "The charter guiding this project.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "DataClassComposition": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "767fb343-4699-49c1-a0f8-af6da78505f8", - "name": "DataClassComposition", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a data class to another in a part of hierarchy.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "name": "DataClass", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "partOfDataClasses", - "attributeDescription": "Data classes that includes other data classes in its definition.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "name": "DataClass", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "madeOfDataClasses", - "attributeDescription": "Data classes that provide part of another data class's definitions.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceDriverLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "c5e6fada-2c12-46ee-afa9-b71dd1bd8179", - "name": "GovernanceDriverLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a two governance drivers.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", - "name": "GovernanceDriver", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkingDrivers", - "attributeDescription": "Governance driver that makes use of another governance driver's requirements.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", - "name": "GovernanceDriver", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedDrivers", - "attributeDescription": "Governance driver that defines requirements that support another governance driver.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "PersonalContribution": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4a316abe-eeee-4d11-ad5a-4bfb4079b80b", - "name": "PersonalContribution", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying a person's contribution record.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", - "name": "Person", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contributor", - "attributeDescription": "The person behind the contribution.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28cccd285", - "name": "ContributionRecord", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contributionRecord", - "attributeDescription": "The record of activity by this person.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "DataContentForDataSet": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "b827683c-2924-4df3-a92d-7be1888e23c0", - "name": "DataContentForDataSet", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The assets that provides data for a data 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": "queryId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 for placeholder in data set's formula.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "query", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 how the value(s) is/are retrieved.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "BOTH", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataContent", - "attributeDescription": "Assets supporting a data set.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1449911c-4f44-4c22-abc0-7540154feefb", - "name": "DataSet", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportedDataSets", - "attributeDescription": "Data sets that use this asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "RegisteredIntegrationConnector": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2", - "name": "RegisteredIntegrationConnector", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between an integration group and an integration connector that is part of the group.", - "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 connector for logging purposes.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "connectorUserId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 for the integration connector to use when working with open metadata. The default userId comes from the hosting server if this value is blank.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "metadataSourceQualifiedName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Qualified name of a software server capability that is the owner/home of the metadata catalogued by the integration connector.", - "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": "Earliest time that the connector can run.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stopTime", - "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": "Latest time that the connector can run.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "refreshTimeInterval", - "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": "Describes how frequently the integration connector should run - in minutes.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "permittedSynchronization", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", - "name": "PermittedSynchronization", - "description": "Defines the synchronization rules between a third party technology and open metadata.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "BothDirections", - "description": "Metadata exchange is permitted in both directions." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "ToThirdParty", - "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "FromThirdParty", - "description": "The third party technology is logically upstream and is publishing metadata to open metadata." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another synchronization rule." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Defines the permitted directions of flow of metadata updates between open metadata and a third party technology.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "generateIntegrationReport", - "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": "Should the integration daemon create integration reports based on the integration connector's activity? (Default is true.)", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4d7c43ec-983b-40e4-af78-6fb66c4f5136", - "name": "IntegrationGroup", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "includedInIntegrationGroups", - "attributeDescription": "An integration group that this integration connector is a member of.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db", - "name": "IntegrationConnector", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "registeredIntegrationConnectors", - "attributeDescription": "An integration connector that should run as part of the integration group.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "PortDelegation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E", - "name": "PortDelegation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A relationship between a more granular and a more abstract port", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", - "name": "Port", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "delegatingFrom", - "attributeDescription": "Higher level Port", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", - "name": "Port", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "delegatingTo", - "attributeDescription": "Lower level port", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "ServerEndpoint": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2b8bfab4-8023-4611-9833-82a0dc95f187", - "name": "ServerEndpoint", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines an endpoint associated with a 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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "servers", - "attributeDescription": "Server(s) supporting this endpoint.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", - "name": "Endpoint", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "endpoints", - "attributeDescription": "Endpoints supported by this server.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "MoreInformation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f", - "name": "MoreInformation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to indicate that a referenceable provides additional information about another referenceable.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "describes", - "attributeDescription": "Describes this core element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "providesMoreInformation", - "attributeDescription": "Provides more information about this referenceable.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProjectHierarchy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8f1134f6-b9fe-4971-bc57-6e1b8b302b55", - "name": "ProjectHierarchy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A nesting relationship between projects.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "managingProject", - "attributeDescription": "Project that oversees this project.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "managedProject", - "attributeDescription": "Project that this project is responsible for managing.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AnnotationExtension": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "605aaa6d-682e-405c-964b-ca6aaa94be1b", - "name": "AnnotationExtension", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Additional information to augment an annotation.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", - "name": "Annotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "extendedAnnotations", - "attributeDescription": "The annotations being extended.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", - "name": "Annotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "annotationExtensions", - "attributeDescription": "The annotations providing additional information.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DigitalServiceOperator": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "79ac27f6-be9c-489f-a7c2-b9add0bf705c", - "name": "DigitalServiceOperator", - "status": "ACTIVE_TYPEDEF", - "version": 4, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the organizations responsible for operating the digital services.", - "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": "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": "The extent to which this operator is responsible for the digital service operations.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "operatesDigitalServices", - "attributeDescription": "The digital services that this team/organization operates.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "digitalServiceOperators", - "attributeDescription": "The unit (team, capability, ...) responsible for managing this digital service.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProcessCall": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "af904501-6347-4f52-8378-da50e8d74828", - "name": "ProcessCall", - "status": "ACTIVE_TYPEDEF", - "version": 4, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Shows a request-response call between two elements.", - "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": "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": "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 name of the call relationship.", - "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 and purpose of the call.", - "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": "Function that determines the subset of the data that flows.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "lineNumber", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Location of the call in the implementation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "caller", - "attributeDescription": "Call originator.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "called", - "attributeDescription": "Called element that performs the processing.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "APIResponse": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e8001de2-1bb1-442b-a66f-9addc3641eae", - "name": "APIResponse", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an API operation and its response structure.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", - "name": "APIOperation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedAsAPIResponse", - "attributeDescription": "API operations using this structure as the response.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "apiResponse", - "attributeDescription": "Response structure for this API operation.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "PeerDuplicateLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a94b2929-9e62-4b12-98ab-8ac45691e5bd", - "name": "PeerDuplicateLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between detected duplicate entities.", - "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": "statusIdentifier", - "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": "Status of the duplicate processing. Value defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "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": "Source of the duplicate detection.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information for the steward(s) relating to the duplicate detection.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "peerDuplicateOrigin", - "attributeDescription": "Oldest element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "peerDuplicatePartner", - "attributeDescription": "Newest element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DesignModelGroupMembership": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2dcfe62b-341c-4c3d-b336-a94a52c20556", - "name": "DesignModelGroupMembership", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a design model element to a group.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b144ee2a-fa71-4897-b51a-dd5239c26910", - "name": "DesignModelGroup", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "memberOfModelGroups", - "attributeDescription": "Link to a list of groups this element is a member of.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", - "name": "DesignModelElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "elementsInGroup", - "attributeDescription": "List of elements that belong to this group.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "RelatedIntegrationReport": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "83d12156-f8f3-4b4b-b31b-18c140df9aa3", - "name": "RelatedIntegrationReport", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links an integration report to the anchor entity it describes.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "anchorSubject", - "attributeDescription": "The anchor entity that the integration report describes.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b8703d3f-8668-4e6a-bf26-27db1607220d", - "name": "IntegrationReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "integrationReports", - "attributeDescription": "A description of the changes made to the anchor entity by an integration report.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SchemaAttributeDefinition": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "60f1e263-e24d-4f20-8c0d-b5e21232cd54", - "name": "SchemaAttributeDefinition", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between data field analysis and the identified schema attribute definition.", - "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": "assetGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 analyzed asset.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "name": "DataField", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "deployedSchemaAttributes", - "attributeDescription": "The analysis of the equivalent data fields from deployed assets.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "schemaAttributeDefinition", - "attributeDescription": "Official schema attribute definition.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "DerivedSchemaTypeQueryTarget": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1c2622b7-ac21-413c-89e1-6f61f348cd19", - "name": "DerivedSchemaTypeQueryTarget", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Details of how a derived schema element is calculated.", - "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": "queryId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 for placeholder in derived schema type's formula.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "query", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 how the value(s) is/are retrieved.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedBy", - "attributeDescription": "Use of another schema type to derive all or part of this schema type's value.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "queryTarget", - "attributeDescription": "Used to provide data values to the other schema type.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DiscoveredAnnotation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "51d386a3-3857-42e3-a3df-14a6cad08b93", - "name": "DiscoveredAnnotation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The annotations that make up a discovery analysis report.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6cea5b53-558c-48f1-8191-11d48db29fb4", - "name": "Annotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "reportedAnnotations", - "attributeDescription": "The annotations providing the contents for the report.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", - "name": "OpenDiscoveryAnalysisReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "fromAnalysisReport", - "attributeDescription": "The report that the annotations belong to.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "MapToElementType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8b9856b3-451e-45fc-afc7-fddefd81a73a", - "name": "MapToElementType", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines the type of value for a map schema type.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", - "name": "MapSchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentMapTo", - "attributeDescription": "Used in map.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentMapTo", - "attributeDescription": "Used in map to describe the range (value mapped to).", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "NestedSchemaAttribute": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0ffb9d87-7074-45da-a9b0-ae0859611133", - "name": "NestedSchemaAttribute", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The direct parent-child relationship between attributes with an embedded type.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentAttribute", - "attributeDescription": "Schema attribute containing this attribute.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedAttributes", - "attributeDescription": "The attributes defining the internal structure of the parent attribute.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SourcedFrom": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "87b7371e-e311-460f-8849-08646d0d6ad3", - "name": "SourcedFrom", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines source of the information for a referenceable that was created by copying from a template.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "resultingElement", - "attributeDescription": "Element created from the template.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "templateElement", - "attributeDescription": "Template element providing information.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "TranslationLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "576228af-33ec-4588-ba4e-6a864a097e10", - "name": "TranslationLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links an entity to a collection of translated properties.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "translates", - "attributeDescription": "Entity that is translated.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d7df0579-8671-48f0-a8aa-38a487d418c8", - "name": "TranslationDetail", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "translation", - "attributeDescription": "Translation of entity for a single language.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "CommunityMembership": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "7c7da1a3-01b3-473e-972e-606eff0cb112", - "name": "CommunityMembership", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Associates an actor profile with a community.", - "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": "relationshipType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "b0ef45bf-d12b-4b6f-add6-59c14648d750", - "name": "CommunityMembershipType", - "description": "Type of membership to a community.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Contributor", - "description": "Participant in the community." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Administrator", - "description": "Administrator of the community." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Leader", - "description": "Leader of the community." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Observer", - "description": "Observer of the community." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another role in the community." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Type of membership to the community.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "fbd42379-f6c3-4f08-b6f7-378565cda993", - "name": "Community", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "memberOfCommunity", - "attributeDescription": "Communities that the person is a member of.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "communityMembers", - "attributeDescription": "Members of the community.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ExternalIdScope": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8c5b1415-2d1f-4190-ba6c-1fdd47f03269", - "name": "ExternalIdScope", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Places where an external identifier is recognized.", - "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": "permittedSynchronization", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", - "name": "PermittedSynchronization", - "description": "Defines the synchronization rules between a third party technology and open metadata.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "BothDirections", - "description": "Metadata exchange is permitted in both directions." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "ToThirdParty", - "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "FromThirdParty", - "description": "The third party technology is logically upstream and is publishing metadata to open metadata." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another synchronization rule." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Defines the permitted directions of flow of metadata updates between open metadata and a third party technology.", - "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": "Additional description of the type of synchronization occurring.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "scopedTo", - "attributeDescription": "Identifies where this external identifier is known.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", - "name": "ExternalId", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "managedResources", - "attributeDescription": "Link to details of a resource that this component manages.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "RelatedKeyword": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62", - "name": "RelatedKeyword", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links search keywords that have similar meanings together.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", - "name": "SearchKeyword", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedKeyword", - "attributeDescription": "Keyword with similar meaning or usage.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", - "name": "SearchKeyword", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedKeyword", - "attributeDescription": "Keyword with similar meaning or usage.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AcceptedAnswer": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "ecf1a3ca-adc5-4747-82cf-10ec590c5c69", - "name": "AcceptedAnswer", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a comment as answering a question asked in another comment.", - "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": "isPublic", - "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 the attached answer visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", - "name": "Comment", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "answeredQuestions", - "attributeDescription": "Questions that now has an accepted answer.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a226073-9c84-40e4-a422-fbddb9b84278", - "name": "Comment", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "acceptedAnswers", - "attributeDescription": "Accumulated answers.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceDefinitionMetric": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e076fbb3-54f5-46b8-8f1e-a7cb7e792673", - "name": "GovernanceDefinitionMetric", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance definition and a governance metric used to measure this definition.", - "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": "rationale", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Documents reasons for using the metric to measure the governance definition.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e", - "name": "GovernanceMetric", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "metrics", - "attributeDescription": "The metrics that measure the landscape against this governance definition.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", - "name": "GovernanceDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "measuredDefinitions", - "attributeDescription": "The governance definitions that are measured by this metric.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AssetSchemaType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "815b004d-73c6-4728-9dd9-536f4fe803cd", - "name": "AssetSchemaType", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The 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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "describesAssets", - "attributeDescription": "Asset that conforms to the schema type.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "schema", - "attributeDescription": "Structure of the content of this asset.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "TopicSubscribers": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e", - "name": "TopicSubscribers", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links the list of subscribers to a topic.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "69751093-35f9-42b1-944b-ba6251ff513d", - "name": "SubscriberList", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "subscribers", - "attributeDescription": "The endpoints subscribed to this topic.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "29100f49-338e-4361-b05d-7e4e8e818325", - "name": "Topic", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "topics", - "attributeDescription": "The topics used by this subscriber list.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "OrganizationalCapability": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "47f0ad39-db77-41b0-b406-36b1598e0ba7", - "name": "OrganizationalCapability", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Describes the relationship between a team and the business capabilities it supports.", - "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": "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 in the organization.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", - "name": "BusinessCapability", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportsBusinessCapabilities", - "attributeDescription": "The business capabilities that this team supports.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "name": "Team", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportingTeams", - "attributeDescription": "The teams that support this business capability.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ReplacementTerm": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed", - "name": "ReplacementTerm", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to a glossary term that is replacing an obsolete glossary term.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "replacedTerms", - "attributeDescription": "Replaced glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "replacementTerms", - "attributeDescription": "Replacement glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataFlow": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "d2490c0c-06cc-458a-add2-33cf2f5dd724", - "name": "DataFlow", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Shows that data flows in one direction from one element to another.", - "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": "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": "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 name of the flow relationship.", - "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 and purpose of the flow.", - "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": "Function that determines the subset of the data that flows.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataSupplier", - "attributeDescription": "Caller element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataConsumer", - "attributeDescription": "Called element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "MetadataCohortPeer": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "954cdba1-3d69-4db1-bf0e-d59fd2c25a27", - "name": "MetadataCohortPeer", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A metadata repository's registration with an open metadata cohort.", - "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": "registrationDate", - "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 first registered with the cohort.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893", - "name": "MetadataRepositoryCohort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "registeredWithCohorts", - "attributeDescription": "Identifies which cohorts this cohort member is registered with.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "42063797-a78a-4720-9353-52026c75f667", - "name": "CohortMember", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "cohortMembership", - "attributeDescription": "Members of this cohort.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ConceptBeadRelationshipEnd": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1a379e55-a4c0-4289-a1a4-b89d257611d1", - "name": "ConceptBeadRelationshipEnd", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links one end of a concept bead link relationship to 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", - "propertiesDefinition": [ - { - "headerVersion": 1, - "attributeName": "attributeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 for the relationship end.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "decoration", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a97d9167-7dd6-4dea-a8cf-c73c57a0f470", - "name": "ConceptModelDecoration", - "description": "Describes the type of relationship end.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "None", - "description": "The relationship links two concept beads together." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Aggregation", - "description": "The relationship links an independent concept bead to a collection concept bead." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Composition", - "description": "The relationship links a sub-part to a composite." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Extension", - "description": "The relationship links an extension to a base concept bead." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "None", - "description": "The relationship links two concept beads together." - } - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Usage and lifecycle for this connection between the concept bead and the link.", - "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": "Position of this relationship in the concept bead's list of relationships.", - "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": "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": "uniqueValues", - "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": "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": "navigable", - "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 it possible to follow the link in this direction.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "13defd95-6452-4398-8382-e47f1a271eff", - "name": "ConceptBeadLink", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relationships", - "attributeDescription": "The relationships that the concept bead can be a part of.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", - "name": "ConceptBead", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "endBeads", - "attributeDescription": "The concept beads that are linked via this relationship.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedNoteLogEntry": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "38edecc6-f385-4574-8144-524a44e3e712", - "name": "AttachedNoteLogEntry", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a note log and one of its note log entries.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", - "name": "NoteLog", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "logs", - "attributeDescription": "Logs that this entry relates.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", - "name": "NoteEntry", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "entries", - "attributeDescription": "Accumulated notes.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "CollectionMembership": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5cabb76a-e25b-4bb5-8b93-768bbac005af", - "name": "CollectionMembership", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a member of a collection.", - "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": "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 describing the membership relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the membership relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the correctness of the membership relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "membershipRationale", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 member is used, or why it is useful in this collection.", - "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": "Person, organization or automated process that created the membership relationship.", - "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": "a3bdb2ac-c28e-4e5a-8ab7-76aa01038832", - "name": "MembershipStatus", - "description": "Defines the provenance and confidence that a member belongs in a collection.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The membership origin is unknown." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Discovered", - "description": "The membership was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Assigned", - "description": "The membership was proposed by an expert curator." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Imported", - "description": "The membership was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Validated", - "description": "The membership created by an automated process has been validated and approved by an expert curator." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Deprecated", - "description": "The membership should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "Obsolete", - "description": "The membership must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another membership status." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The membership origin is unknown." - } - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of the membership relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "foundInCollections", - "attributeDescription": "Collections that link to this element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "collectionMembers", - "attributeDescription": "Members of this collection.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ApprovedPurpose": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3", - "name": "ApprovedPurpose", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the proposes that processes/people have permission to process data for.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "approvedForPurposes", - "attributeDescription": "The people/processes that have permission to process data.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", - "name": "DataProcessingPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "approvedPurposes", - "attributeDescription": "The purposes (outcomes) that the people/processes have permission for.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ContractLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "33937ece-5ab6-4cd3-a348-b8196ffc3b4e", - "name": "ContractLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to the contract document.", - "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": "contractId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 for the contract used in the agreement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "contractLiaison", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 actor to contact with queries relating to the contract.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "contractLiaisonTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 of actor element.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "contractLiaisonPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the actor element used as the identifier.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", - "name": "Agreement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "agreements", - "attributeDescription": "Agreements related to the contract.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", - "name": "ExternalReference", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contracts", - "attributeDescription": "Details of the contract documents.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TargetForAction": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "46ec49bf-af66-4575-aab7-06ce895120cd", - "name": "TargetForAction", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The element(s) that the governance action will work on.", - "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": "actionTargetName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 to identify the action target to the governance service that processes it.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "completionMessage", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Message to provide additional information on the results of acting on the target by the governance service or the reasons for any failures.", - "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/time that work stopped on this element for the linked governance action.", - "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/time that work started on this element for the linked governance action.", - "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": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", - "name": "GovernanceActionStatus", - "description": "Defines the current execution status of a governance action.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Requested", - "description": "The governance action has been created and is pending." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Approved", - "description": "The governance action is approved to run." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Waiting", - "description": "The governance action is waiting for its start time or the right conditions to run." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Activating", - "description": "The governance service for the governance action is being initialized in the governance engine." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "InProgress", - "description": "The governance engine is running the associated governance service for the governance action." - }, - { - "headerVersion": 1, - "ordinal": 10, - "value": "Actioned", - "description": "The governance service for the governance action has successfully completed processing." - }, - { - "headerVersion": 1, - "ordinal": 11, - "value": "Invalid", - "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." - }, - { - "headerVersion": 1, - "ordinal": 12, - "value": "Ignored", - "description": "The governance action has not been run because a different governance action was chosen." - }, - { - "headerVersion": 1, - "ordinal": 13, - "value": "Failed", - "description": "The governance service for the governance action failed to execute." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Undefined or unknown governance action status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of the work on this element.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", - "name": "GovernanceAction", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "identifiedActions", - "attributeDescription": "Governance action that is acting on this element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "actionTarget", - "attributeDescription": "Element(s) to work on.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ConnectorImplementationChoice": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "633648f3-c951-4ad7-b975-9fc04e0f3d2e", - "name": "ConnectorImplementationChoice", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relates a connector category for a specific type of technology with the connector types that support it.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e", - "name": "ConnectorCategory", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connectorCategories", - "attributeDescription": "The categories that a connector type belongs to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", - "name": "ConnectorType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connectorTypes", - "attributeDescription": "The connector types that support the technology described in the connector category.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProjectManagement": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "ac63ac45-a4d0-4fba-b583-92859de77dd8", - "name": "ProjectManagement", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The link between a project and its project manager role.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "projectsManaged", - "attributeDescription": "The projects that are being managed by this project manager.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "projectManagers", - "attributeDescription": "The roles for managing this project.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "Stakeholder": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "efd8a136-0aea-4668-b91a-30f947e38b82", - "name": "Stakeholder", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies the Actor Profiles that commissioned work (such as a project or a community) or a capability, service or assets.", - "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": "stakeholderRole", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 that describes the role that the stakeholders will play in the operation of the Referenceable.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "commissioned", - "attributeDescription": "Team, project, community, asset, service, ... that was commissioned by the stakeholders.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "commissionedBy", - "attributeDescription": "Profiles of actors or roles that are stakeholders.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceActionFlow": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0", - "name": "GovernanceActionFlow", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a governance process and its first action.", - "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": "guard", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 guard passed to the first governance service to run in this process.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4d3a2b8d-9e2e-4832-b338-21c74e45b238", - "name": "GovernanceActionProcess", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "triggeredFrom", - "attributeDescription": "Governance process that describes an action flow.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "92e20083-0393-40c0-a95b-090724a91ddc", - "name": "GovernanceActionType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "firstAction", - "attributeDescription": "First governance action in a governance action process.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "SolutionComposition": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114", - "name": "SolutionComposition", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship showing the nesting structure of solution components.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", - "name": "SolutionComponent", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInSolutionComponents", - "attributeDescription": "The solution components that embed this component.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", - "name": "SolutionComponent", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedSolutionComponents", - "attributeDescription": "The sub-parts of this solution component.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "APIOperations": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "03737169-ceb5-45f0-84f0-21c5929945af", - "name": "APIOperations", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an API and its operations.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8", - "name": "APISchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInAPI", - "attributeDescription": "API that this operation belongs to.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", - "name": "APIOperation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "containsOperations", - "attributeDescription": "Operations for this API type.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "LinkedExternalSchemaType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "9a5d78c2-1716-4783-bfc6-c300a9e2d092", - "name": "LinkedExternalSchemaType", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links to a reusable schema type that is external to this schema.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInSchema", - "attributeDescription": "Connection point for a reusable schema type.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "externalSchemaType", - "attributeDescription": "The schema type that is being reused in another schema.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "RelationshipAnnotation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "73510abd-49e6-4097-ba4b-23bd3ef15baa", - "name": "RelationshipAnnotation", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Annotation relating two referenceables.", - "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": "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": "discoveryReportGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 discovery analysis report that this relationship belongs to.", - "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": "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": "annotationStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", - "name": "AnnotationStatus", - "description": "Defines the status of an annotation.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "New", - "description": "The annotation is new." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Reviewed", - "description": "The annotation has been reviewed by a steward." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Approved", - "description": "The annotation has been approved." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Actioned", - "description": "The request has been actioned." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Invalid", - "description": "The annotation is invalid or incorrect." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Ignore", - "description": "The annotation should be ignored." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Status of the processing as a result of the 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 - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedFromObjectAnnotations", - "attributeDescription": "The referenceables linked from.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedToObjectAnnotations", - "attributeDescription": "The referenceables linked to.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "AssociatedGroup": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e47a19d0-7e12-4cf7-9ad7-50856da7faa2", - "name": "AssociatedGroup", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a security access control to a security group.", - "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": "operationName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 operation to that is controlled by the linked security group.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f53bd594-5f75-4cf9-9f77-f5c35396590e", - "name": "SecurityAccessControl", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInAccessControls", - "attributeDescription": "An access control definition that uses the security group.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "042d9b5c-677e-477b-811f-1c39bf716759", - "name": "SecurityGroup", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "associatedSecurityGroups", - "attributeDescription": "The security groups to use to validate access for the operation.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernancePolicyLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0c42c999-4cac-4da4-afab-0e381f3a818e", - "name": "GovernancePolicyLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links related governance policies together.", - "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 relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", - "name": "GovernancePolicy", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkingPolicies", - "attributeDescription": "Policies that are dependent on this policy.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", - "name": "GovernancePolicy", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedPolicies", - "attributeDescription": "Policies that further define aspects of this policy.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DiscoveredDataField": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "60f2d263-e24d-4f20-8c0d-b5e22222cd54", - "name": "DiscoveredDataField", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Data field detected in asset during schema analysis.", - "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": "dataFieldPosition", - "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 data field in the parent annotation's list of data fields.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", - "name": "SchemaAnalysisAnnotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "schemaAnalysisAnnotation", - "attributeDescription": "The annotation collecting the results of the schema analysis.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "name": "DataField", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "discoveredDataFields", - "attributeDescription": "The data fields discovered during schema analysis.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "PersonRoleAppointment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4a316abe-bcce-4d11-ad5a-4bfb4079b80b", - "name": "PersonRoleAppointment", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying a person's roles.", - "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": "isPublic", - "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 the appointment visible to more than the role owner and appointee?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", - "name": "Person", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "rolePerformers", - "attributeDescription": "A person performing this role.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "performsRoles", - "attributeDescription": "A role performed by this person.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TermTYPEDBYRelationship": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "669e8aa4-c671-4ee7-8d03-f37d09b9d006", - "name": "TermTYPEDBYRelationship", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines the relationship between a spine attribute and its 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": "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 relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "attributesTypedBy", - "attributeDescription": "Attributes of this type.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "types", - "attributeDescription": "Types for this attribute.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "MapFromElementType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6189d444-2da4-4cd7-9332-e48a1c340b44", - "name": "MapFromElementType", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines the type of the key for a map schema type.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", - "name": "MapSchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentMapFrom", - "attributeDescription": "Used in map.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentMapFrom", - "attributeDescription": "Used in map to describe the domain (value mapped from).", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ValidValueMember": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6337c9cd-8e5a-461b-97f9-5151bcb97a9e", - "name": "ValidValueMember", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links valid value set to the values.", - "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": "isDefaultValue", - "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 the member the default value in the set?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7de10805-7c44-40e3-a410-ffc51306801b", - "name": "ValidValuesSet", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValuesSet", - "attributeDescription": "The valid values set that this element belongs to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", - "name": "ValidValueDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "memberOfValidValuesSet", - "attributeDescription": "Description of a single valid value.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SchemaTypeDefinition": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "60f2d263-e24d-4f20-8c0d-b5e24648cd54", - "name": "SchemaTypeDefinition", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between schema analysis annotation and the identified schema type definition.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", - "name": "SchemaAnalysisAnnotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "deployedSchemaTypes", - "attributeDescription": "The analysis of the schema type for deployed assets.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "schemaTypeDefinition", - "attributeDescription": "Official schema type definition.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "GovernanceResponsibilityAssignment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "cb15c107-b7af-475d-aab0-d78b8297b982", - "name": "GovernanceResponsibilityAssignment", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a role that will perform a governance responsibility.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "performedByRoles", - "attributeDescription": "The roles assigned to this responsibility.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "89a76b24-deb8-45bf-9304-a578a610326f", - "name": "GovernanceResponsibility", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "governanceResponsibilities", - "attributeDescription": "The responsibilities performed by this role.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "Synonym": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "74f4094d-dba2-4ad9-874e-d422b69947e2", - "name": "Synonym", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between glossary terms that have the same meaning.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "synonyms", - "attributeDescription": "Glossary terms with the same meaning.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "synonyms", - "attributeDescription": "Glossary terms with the same meaning.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SchemaTypeOption": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "eb4f1f98-c649-4560-8a46-da17c02764a9", - "name": "SchemaTypeOption", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The list of alternative schema types.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", - "name": "SchemaTypeChoice", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "schemaOptionalUses", - "attributeDescription": "Potential place where this schema type is used.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "schemaOptionalUses", - "attributeDescription": "Schema where this schema type is reused.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataProcessingSpecification": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1dfdec0f-f206-4db7-bac8-ec344205fb3c", - "name": "DataProcessingSpecification", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the processing being performed by processes or people.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProcessingElements", - "attributeDescription": "The people/processes performing the processing.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", - "name": "DataProcessingDescription", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProcessingDescriptions", - "attributeDescription": "The description of the processing.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "EmbeddedConnection": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f", - "name": "EmbeddedConnection", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a virtual connection and one of the connections it depends on.", - "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": "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 for the embedded connection.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "arguments", - "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": "Additional arguments needed by the virtual connector when using each connection.", - "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": "Position that embedded connection should be processed.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "82f9c664-e59d-484c-a8f3-17088c23a2f3", - "name": "VirtualConnection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportingVirtualConnections", - "attributeDescription": "Virtual connections using this connection.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", - "name": "Connection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "embeddedConnections", - "attributeDescription": "Connections embedded in this virtual connection.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ConnectionToAsset": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e777d660-8dbe-453e-8b83-903771f054c0", - "name": "ConnectionToAsset", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a connection and the description of the asset it can be used to access.", - "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": "assetSummary", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 that is retrieved through this connection.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", - "name": "Connection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connections", - "attributeDescription": "Connections to this asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "asset", - "attributeDescription": "Asset that can be accessed with this connection.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "RegulationCertificationType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "be12ff15-0721-4a7e-8c98-334eaa884bdf", - "name": "RegulationCertificationType", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a certification required by a regulation.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e3c4293d-8846-4500-b0c0-197d73aba8b0", - "name": "Regulation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedRegulations", - "attributeDescription": "Regulations that require this type of certification.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea", - "name": "CertificationType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "requiredCertifications", - "attributeDescription": "The certifications required by this regulation.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceActionRequestSource": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5323a705-4c1f-456a-9741-41fdcb8e93ac", - "name": "GovernanceActionRequestSource", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance action type and the governance engine that will execute it.", - "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": "originGovernanceService", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 qualifiedName of the governance service that caused the governance action to be created.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "originGovernanceEngine", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 qualifiedName of the governance engine that caused the governance action to be created.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestSourceName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 to identify the request source to the governance service that processes it.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "sourceActivity", - "attributeDescription": "Element(s) that caused this governance action to be created.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", - "name": "GovernanceAction", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "identifiedActions", - "attributeDescription": "Governance actions that were initiated for the linked element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceRuleImplementation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e701a5c8-c1ba-4b75-8257-e0a6569eda48", - "name": "GovernanceRuleImplementation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies the implementation of a governance rule.", - "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Documents reasons for implementing the rule using this implementation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", - "name": "GovernanceRule", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementsGovernanceRules", - "attributeDescription": "The rules that are implemented by this component.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "486af62c-dcfd-4859-ab24-eab2e380ecfd", - "name": "DeployedSoftwareComponent", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementations", - "attributeDescription": "The software components that implement this governance rule.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "IsATypeOfRelationship": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "9b6a91b5-a339-4245-b208-040805f95a75", - "name": "IsATypeOfRelationship", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines an inheritance relationship between two spine objects.", - "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": "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 relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "Inherited", - "attributeDescription": "Inherited (Subtypes) for this object.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "InheritedFrom", - "attributeDescription": "Inherited from type (Supertypes) for this object.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ServerAssetUse": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "56315447-88a6-4235-ba91-fead86524ebf", - "name": "ServerAssetUse", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines that a server capability is using an asset.", - "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": "minimumInstances", - "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 running asset instances controlled by the software server capability.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "maximumInstances", - "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 running asset instances controlled by the software server 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": "Additional information on how the asset is used by the software server capability.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "useType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "09439481-9489-467c-9ae5-178a6e0b6b5a", - "name": "ServerAssetUseType", - "description": "Defines how a software server capability may use an asset.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Owns", - "description": "The software server capability is accountable for the maintenance and protection of the asset." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Governs", - "description": "The software server capability provides management or oversight of the asset." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Maintains", - "description": "The software server capability keeps the asset up-to-date." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Uses", - "description": "The software server capability consumes the content of the asset." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another usage." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Owns", - "description": "The software server capability is accountable for the maintenance and protection of the asset." - } - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Describes how the software server capability uses the asset.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", - "name": "SoftwareCapability", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "consumedBy", - "attributeDescription": "Capability consuming this asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "consumedAsset", - "attributeDescription": "Asset that this software capability is dependent on.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SchemaTypeImplementation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "eed5565d-7ac2-46fe-9a26-4722fad8d993", - "name": "SchemaTypeImplementation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a schema type and an implementation.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementationSchemaTypes", - "attributeDescription": "Logical structure for the data.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "name": "Process", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementations", - "attributeDescription": "Concrete implementation of the schema type.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "RelatedTerm": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "b1161696-e563-4cf9-9fd9-c0c76e47d063", - "name": "RelatedTerm", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between similar 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": "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "seeAlso", - "attributeDescription": "Related glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "seeAlso", - "attributeDescription": "Related glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceActionTypeExecutor": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "f672245f-35b5-4ca7-b645-014cf61d5b75", - "name": "GovernanceActionTypeExecutor", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance action type and the governance engine that will execute it.", - "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": "requestParameterFilter", - "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": "Which requestParameters to remove before calling governance action.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "actionTargetFilter", - "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": "Which actionTargets to remove before calling governance action.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 request type used to call the service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "actionTargetMap", - "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 action target to rename before calling the governance action. Map is from old name to new name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestParameters", - "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 configure the governance service for this type of request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestParameterMap", - "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 request parameters to rename before calling the governance action. Map is from old name to new name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "92e20083-0393-40c0-a95b-090724a91ddc", - "name": "GovernanceActionType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportsGovernanceActionTypes", - "attributeDescription": "Governance action type that drives a governance engine.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", - "name": "GovernanceEngine", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "governanceActionTypeExecutor", - "attributeDescription": "Governance engine that will run the governance action.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "APIHeader": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6", - "name": "APIHeader", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an API operation and its header.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", - "name": "APIOperation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedAsAPIHeader", - "attributeDescription": "API operations using this structure as the header.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "apiHeader", - "attributeDescription": "Header structure for this API operation.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "LibraryTermReference": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "38c346e4-ddd2-42ef-b4aa-55d53c078d22", - "name": "LibraryTermReference", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a glossary term to a glossary term in an external glossary.", - "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": "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 corresponding element from the external glossary.", - "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 corresponding element from the external glossary.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person who established the link to the external glossary.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "lastVerified", - "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 when this reference was last checked.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "localTerms", - "attributeDescription": "Related local glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", - "name": "ExternalGlossaryLink", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "externalGlossaryTerms", - "attributeDescription": "Links to related external glossaries.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ImplementedBy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "28f63c94-aaef-4c84-98f7-d77aa605272e", - "name": "ImplementedBy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a step in the refinement of digital components and artifacts from design to concrete implementation.", - "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": "designStep", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Process that created the refinement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "role", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Role that this artifact plays in implementing the abstract representation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "transformation", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Transformation process used to create the refinement.", - "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 implementation in the context of the abstract representation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "derivedFrom", - "attributeDescription": "Abstract representation.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementedBy", - "attributeDescription": "Resulting refined element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceProcessImplementation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4", - "name": "GovernanceProcessImplementation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies the implementation of a governance process.", - "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Documents reasons for implementing the process using this implementation.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea", - "name": "GovernanceProcess", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementsGovernanceProcesses", - "attributeDescription": "The processes that are implemented by this component.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "name": "Process", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementations", - "attributeDescription": "The processes that implement this governance process.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "OperatingPlatformManifest": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e5bd6acf-932c-4d9c-85ff-941a8e4451db", - "name": "OperatingPlatformManifest", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines the base software installed on the operating platform.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", - "name": "OperatingPlatform", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "packagedInOperatingPlatforms", - "attributeDescription": "The operating platforms that use this collection of software packages.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "includesSoftwarePackages", - "attributeDescription": "The collection of software packages that are included in the operating platform.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "ITInfrastructureProfile": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4c579e3d-a4ff-41c1-9931-33e6fc992f2b", - "name": "ITInfrastructureProfile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an ITProfile and the asset for the piece of infrastructure it describes.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "describedByProfile", - "attributeDescription": "The IT infrastructure that is described by the IT profile.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "81394f85-6008-465b-926e-b3fae4668937", - "name": "ITProfile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedByAsset", - "attributeDescription": "Description of the user identifies used by the asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GroupedMedia": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "7d881574-461d-475c-ab44-077451528cb8", - "name": "GroupedMedia", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a media file into a data set.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0075d603-1627-41c5-8cae-f5458d1247fe", - "name": "MediaCollection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataSetMembership", - "attributeDescription": "Identifies the data sets this media file belongs to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", - "name": "MediaFile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataSetMembers", - "attributeDescription": "Media files that make up this media collection.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "NestedFile": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4cb88900-1446-4eb6-acea-29cd9da45e63", - "name": "NestedFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The link between a data file and its containing folder.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", - "name": "FileFolder", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "homeFolder", - "attributeDescription": "Identifies the containing folder of this datafile.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedFiles", - "attributeDescription": "Files stored in this folder.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TermAnchor": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1d43d661-bdc7-4a91-a996-3239b8f82e56", - "name": "TermAnchor", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a term to its owning glossary.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "name": "Glossary", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "anchor", - "attributeDescription": "Owning glossary.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "terms", - "attributeDescription": "Terms owned by this glossary.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ForeignKey": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07", - "name": "ForeignKey", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The primary key for another column is stored in a relational column from another table to enable them to be joined.", - "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 relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the correctness of the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "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 foreign key.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", - "name": "RelationalColumn", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "primaryKey", - "attributeDescription": "Relational column holding the primary key.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", - "name": "RelationalColumn", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "foreignKey", - "attributeDescription": "Use of primary key from another table to enable table joins.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DiscoveryEngineReport": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2c318c3a-5dc2-42cd-a933-0087d852f67f", - "name": "DiscoveryEngineReport", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A discovery analysis report created by a discovery engine.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "be650674-790b-487a-a619-0a9002488055", - "name": "OpenDiscoveryEngine", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "sourceDiscoveryEngine", - "attributeDescription": "The discovery engine that produced the report.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", - "name": "OpenDiscoveryAnalysisReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "discoveryEngineAnalysisReports", - "attributeDescription": "The reports produced by this discovery engine.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "APIRequest": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4ab3b466-31bd-48ea-8aa2-75623476f2e2", - "name": "APIRequest", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an API operation and its request structure.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f1c0af19-2729-4fac-996e-a7badff3c21c", - "name": "APIOperation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedAsAPIRequest", - "attributeDescription": "API operations using this structure as the request body.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "apiRequest", - "attributeDescription": "Request structure for this API operation.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "CohortMemberMetadataCollection": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8b9dd3ea-057b-4709-9b42-f16098523907", - "name": "CohortMemberMetadataCollection", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The local metadata collection associated with a cohort peer.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "42063797-a78a-4720-9353-52026c75f667", - "name": "CohortMember", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "cohortMember", - "attributeDescription": "Cohort registry representing this metadata collection on the metadata highway.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976", - "name": "MetadataCollection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "localMetadataCollection", - "attributeDescription": "Metadata to exchange with the cohorts.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "ReferenceableFacet": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "58c87647-ada9-4c90-a3c3-a40ace46b1f7", - "name": "ReferenceableFacet", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a property facet and the resource it relates to.", - "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": "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": "Source of this property facet.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedEntity", - "attributeDescription": "Identifies which element this property facet belongs to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6403a704-aad6-41c2-8e08-b9525c006f85", - "name": "PropertyFacet", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "facets", - "attributeDescription": "Additional properties from different sources.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "RelatedDesignPattern": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6447c9cd-8e5a-461b-97f9-5151bcb97a9e", - "name": "RelatedDesignPattern", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links design patterns together.", - "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": "Definition of the relationship between the two design patterns.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6b60a73e-47bc-4096-9073-f94cab975958", - "name": "DesignPattern", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedDesignPattern", - "attributeDescription": "Another design pattern that operates in similar contexts.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6b60a73e-47bc-4096-9073-f94cab975958", - "name": "DesignPattern", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedDesignPattern", - "attributeDescription": "Another design pattern that operates in similar contexts.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DigitalServiceDependency": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e8303911-ba1c-4640-974e-c4d57ee1b310", - "name": "DigitalServiceDependency", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying dependencies between digital services.", - "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": "delegationEscalationAuthority", - "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": "Can delegations and escalations flow on this relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "callsDigitalServices", - "attributeDescription": "The digital services dependent on the others.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "calledByDigitalServices", - "attributeDescription": "The digital services that the others depends on.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "NextGovernanceActionType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "d9567840-9904-43a5-990b-4585c0446e00", - "name": "NextGovernanceActionType", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance actions in a governance action flow.", - "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": "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": "DEPRECATED_ATTRIBUTE", - "attributeDescription": "Trigger one or many next action instances? (deprecated)", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "guard", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 guard that is returned by the previous action that means this next action will run.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mandatoryGuard", - "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 guard mandatory for the next action to run.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "92e20083-0393-40c0-a95b-090724a91ddc", - "name": "GovernanceActionType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dependedOnActionTypes", - "attributeDescription": "Governance Action Type caller.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "92e20083-0393-40c0-a95b-090724a91ddc", - "name": "GovernanceActionType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "followOnActionTypes", - "attributeDescription": "Governance Action Type called.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "ContactThrough": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6cb9af43-184e-4dfa-854a-1572bcf0fe75", - "name": "ContactThrough", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The contact details associated with an actor profile.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", - "name": "ActorProfile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contactDetails", - "attributeDescription": "Contact details owner.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "79296df8-645a-4ef7-a011-912d1cdcf75a", - "name": "ContactDetails", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contacts", - "attributeDescription": "Contact information.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "License": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "35e53b7f-2312-4d66-ae90-2d4cb47901ee", - "name": "License", - "status": "ACTIVE_TYPEDEF", - "version": 4, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an asset and its license.", - "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": "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 notes about the license.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "custodianTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element referenced in the custodian property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "custodian", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 person, engine or organization tht will ensure the license is honored.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "licensee", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 person or organization that holds the license.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "start", - "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 for the license.", - "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": "licensedByPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the licensedBy property.", - "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": "licensedBy", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person or organization that owns the intellectual property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "licensedByTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element referenced in the licensedBy property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "licenseePropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the licensee property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "licenseGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 actual license.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "custodianPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the custodian property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "licenseeTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element referenced in the licensee property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "end", - "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": "End date for the license.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "conditions", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Any special conditions or endorsements over the basic license type.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "licensed", - "attributeDescription": "Items licensed by this type of license.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", - "name": "LicenseType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "licenses", - "attributeDescription": "The types of licenses that apply.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "FolderHierarchy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "48ac9028-45dd-495d-b3e1-622685b54a01", - "name": "FolderHierarchy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A nested relationship between two file folders.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", - "name": "FileFolder", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentFolder", - "attributeDescription": "Parent folder.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", - "name": "FileFolder", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedFolder", - "attributeDescription": "Folders embedded in this folder.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "HostClusterMember": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1a1c3933-a583-4b0c-9e42-c3691296a8e0", - "name": "HostClusterMember", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a host as a member of a host cluster.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "9794f42f-4c9f-4fe6-be84-261f0a7de890", - "name": "HostCluster", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "hostCluster", - "attributeDescription": "Cluster managing this host.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", - "name": "Host", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "managedHosts", - "attributeDescription": "Member of the host cluster.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "LibraryCategoryReference": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "3da21cc9-3cdc-4d87-89b5-c501740f00b2", - "name": "LibraryCategoryReference", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a glossary category to a corresponding category in an external glossary.", - "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": "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 corresponding element from the external glossary.", - "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 corresponding element from the external glossary.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person who established the link to the external glossary.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "lastVerified", - "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 when this reference was last checked.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", - "name": "GlossaryCategory", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "localCategories", - "attributeDescription": "Related local glossary categories.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", - "name": "ExternalGlossaryLink", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "externalGlossaryCategories", - "attributeDescription": "Links to related external glossaries.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ZoneHierarchy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139", - "name": "ZoneHierarchy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Creates a controlling hierarchy for governance zones.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "290a192b-42a7-449a-935a-269ca62cfdac", - "name": "GovernanceZone", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "inheritsFromZone", - "attributeDescription": "The zone that provides additional governance requirements.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "290a192b-42a7-449a-935a-269ca62cfdac", - "name": "GovernanceZone", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "controlsZone", - "attributeDescription": "The zones that are also governed in the same way.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "OperatingPlatformUse": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0943e0ba-73ac-476b-8ebe-2ef30ba44976", - "name": "OperatingPlatformUse", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies the operating platform installed on the IT Infrastructure asset.", - "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": "installTime", - "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": "Time that the software was installed on the IT Infrastructure.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployer", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person, organization or engine that installed the software.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployerTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 of deployer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployerPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Identifying property name of deployer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "bd96a997-8d78-42f6-adf7-8239bc98501c", - "name": "OperatingPlatform", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "operatingPlatforms", - "attributeDescription": "Software installed.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "installedOn", - "attributeDescription": "Where the operating platform is running.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DigitalServiceProduct": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "51465a59-c785-406d-929c-def34596e9af", - "name": "DigitalServiceProduct", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A digital product that is maintained by a digital service.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "managingDigitalService", - "attributeDescription": "Digital service responsible for the production of the digital product.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "digitalProducts", - "attributeDescription": "The associated digital products.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ConceptBeadAttributeLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5bad1df2-664b-407b-8036-2855e2ede92f", - "name": "ConceptBeadAttributeLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a concept bead to its attributes.", - "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": "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": "Position of this relationship in the concept bead's list of relationships.", - "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": "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": "uniqueValues", - "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": "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": "navigable", - "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 it possible to follow the link in this direction.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f7feb509-bce6-4989-a340-5dc7e3eec313", - "name": "ConceptBead", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentBead", - "attributeDescription": "Concept bead that this attribute belongs to.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea", - "name": "ConceptBeadAttribute", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "attributes", - "attributeDescription": "Attribute detail for the concept bead.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedStorage": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2cf1e949-7189-4bf2-8ee4-e1318e59abd7", - "name": "AttachedStorage", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a host to a persistent storage volume.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", - "name": "Host", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "hosts", - "attributeDescription": "The hosts that are accessing the storage.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "14145458-f0d0-4955-8899-b8a2874708c9", - "name": "StorageVolume", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "storageVolumes", - "attributeDescription": "The storage available to a host.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProfileIdentity": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "01664609-e777-4079-b543-6baffe910ff1", - "name": "ProfileIdentity", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Correlates a user identity with an actor profile.", - "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": "roleTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 name of the PersonRole that the UserIdentity is used for.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "roleGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 unique identifier of the specific PersonRole that the UserIdentity is used for.", - "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": "A human readable description of the use of the UserIdentity by the actor.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", - "name": "ActorProfile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "profile", - "attributeDescription": "Description of the person, organization or engine that uses this user identity.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", - "name": "UserIdentity", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "userIdentities", - "attributeDescription": "Authentication identifiers in use by the owner of this profile.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ToDoSource": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646", - "name": "ToDoSource", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The source of the to do, such as a person, meeting or a governance action.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "actionSource", - "attributeDescription": "Source of the to do request.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", - "name": "ToDo", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "actions", - "attributeDescription": "Requests to perform actions related to this element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SolutionPortDelegation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8335e6ed-fd86-4000-9bc5-5203062f28ba", - "name": "SolutionPortDelegation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Aligns ports from nested components with the parent's.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "alignsToPort", - "attributeDescription": "Encapsulating solution component's port", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "delegationPorts", - "attributeDescription": "Ports from nested components that align with the port from the encapsulating solution component.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "Translation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6ae42e95-efc5-4256-bfa8-801140a29d2a", - "name": "Translation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between glossary terms that provide different natural language translation of the same concept.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "translations", - "attributeDescription": "Translations of glossary term.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "translations", - "attributeDescription": "Translations of glossary term.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataProcessingTarget": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a", - "name": "DataProcessingTarget", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the actions being performed on data.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7f53928f-9148-4710-ad37-47633f33cb08", - "name": "DataProcessingAction", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProcessingActions", - "attributeDescription": "Actions being performed on the data.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProcessingTarget", - "attributeDescription": "The data that is being acted upon.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "SubjectAreaHierarchy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b", - "name": "SubjectAreaHierarchy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Creates a controlling hierarchy for subject areas.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72", - "name": "SubjectAreaDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "broaderSubjectArea", - "attributeDescription": "The subject area that describes a broader topic.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d28c3839-bc6f-41ad-a882-5667e01fea72", - "name": "SubjectAreaDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedSubjectArea", - "attributeDescription": "The subdivisions of the broader topic.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DiscoveredNestedDataField": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "60f2d263-e24d-4f20-8c0d-b5e12356cd54", - "name": "DiscoveredNestedDataField", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Nested data fields under a single parent node.", - "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": "dataFieldPosition", - "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": "Positional order of the data field with its parent data field.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "name": "DataField", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentDataField", - "attributeDescription": "Parent node.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "name": "DataField", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedDataFields", - "attributeDescription": "Nested data fields.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ReferenceValueAssignment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "111e6d2e-94e9-43ed-b4ed-f0d220668cbf", - "name": "ReferenceValueAssignment", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Enables valid values to be used as tags to help group and locate referenceables.", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 notes on the mapping.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the mapping.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 between 0 and 100 indicating the confidence that the match is correct.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "attributeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 attribute that the reference data assignment represents.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assignedItem", - "attributeDescription": "An element that has been tagged by a valid value.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", - "name": "ValidValueDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "referenceValue", - "attributeDescription": "A valid value that represents the meaning or classification of the assigned item.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "Actions": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "aca1277b-bf1c-42f5-9b3b-fbc2c9047325", - "name": "Actions", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "An action to change or support a specific rule, project, deliverable, situation or plan of action.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "toDoCause", - "attributeDescription": "Rule or meeting that is driving the need for the to do.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", - "name": "ToDo", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedActions", - "attributeDescription": "Potentially impacting requests for change.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TeamMembership": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1ebc4fb2-b62a-4269-8f18-e9237a2119ca", - "name": "TeamMembership", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the members of teams.", - "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": "position", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 type of membership position, if any.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "teamMembers", - "attributeDescription": "The members of the team.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "name": "Team", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "memberOfTeam", - "attributeDescription": "The team that this role is a member of.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SoftwarePackageDependency": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2c05beaf-e313-47f8-ac18-2298140b2ad9", - "name": "SoftwarePackageDependency", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Shows the software packages being used within an asset.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "runningWithAsset", - "attributeDescription": "Assets making use of software package.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dependsOnSoftwarePackages", - "attributeDescription": "Collection of software packages.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TeamLeadership": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5ebc4fb2-b62a-4269-8f18-e9237a2119ca", - "name": "TeamLeadership", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the leaders of teams.", - "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": "position", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 type of leadership position, eg deputy.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "teamLeaders", - "attributeDescription": "The leaders of the team.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "name": "Team", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "leadsTeam", - "attributeDescription": "The team lead by this person role.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SolutionLinkingWire": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "892a3d1c-cfb8-431d-bd59-c4d38833bfb0", - "name": "SolutionLinkingWire", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Connection between two solution ports that shows how data flows.", - "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": "informationSupplyChainSegmentGUIDs", - "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": "Unique identifier of information supply chain segments that this wire belongs to (typically only one).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connectedPorts", - "attributeDescription": "Port that the wire connects to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connectedPorts", - "attributeDescription": "Port that the wire connects to.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ControlFlow": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "35450726-1c32-4d41-b928-22db6d1ae2f4", - "name": "ControlFlow", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Shows that when one element completes processing, control passes to the next element.", - "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": "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 name of the control flow relationship.", - "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 and purpose of the control flow.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "guard", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Function that must be true to travel down this control flow.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "currentStep", - "attributeDescription": "Element that executes first.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nextStep", - "attributeDescription": "Element that executes next.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "DiscoveryInvocationReport": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1744d72b-903d-4273-9229-de20372a17e2", - "name": "DiscoveryInvocationReport", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "An analysis report from a discovery service.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "2f278dfc-4640-4714-b34b-303e84e4fc40", - "name": "OpenDiscoveryService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "sourceDiscoveryService", - "attributeDescription": "The discovery service that produced the report.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", - "name": "OpenDiscoveryAnalysisReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "serviceDiscoveryAnalysisReports", - "attributeDescription": "The reports produced by this discovery service.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SolutionPortSchema": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "bf02c703-57a2-4ab7-b6db-f49b57b05985", - "name": "SolutionPortSchema", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies the structure of data passed through a solution port.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "describesSolutionPortData", - "attributeDescription": "Port that uses the schema type.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "solutionPortSchema", - "attributeDescription": "Structure of the solution port's data.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "AssociatedSnippet": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6f89c320-22aa-4d99-9a97-442e8d214655", - "name": "AssociatedSnippet", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an element such as a schema type or data class and an implementation snippet.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "snippetRelevantForElements", - "attributeDescription": "Element describing logical structure for data element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "49990755-2faa-4a62-a1f3-9124b9c73df4", - "name": "ImplementationSnippet", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementationSnippetsForElement", - "attributeDescription": "Template implementation of the element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ExternalIdLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "28ab0381-c662-4b6d-b787-5d77208de126", - "name": "ExternalIdLink", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an external identifier and an asset or related 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": "lastSynchronized", - "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": "Timestamp documenting the last time the metadata in the external metadata source was synchronized with open metadata element.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mappingProperties", - "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 to aid the mapping to the the element in an external metadata source.", - "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 the external identifier can be used.", - "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 how the external identifier relates to the resource.", - "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": "Details of where the external identifier was sourced from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "resources", - "attributeDescription": "Resource being identified.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", - "name": "ExternalId", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "alsoKnownAs", - "attributeDescription": "Identifier used in an external system.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ResourceList": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "73cf5658-6a73-4ebc-8f4d-44fdfac0b437", - "name": "ResourceList", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links supporting resources to a referenceable (typically an Actor Profile, Governance Domain, Project, Meeting or Community).", - "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": "resourceUse", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 resource is used, or why it is useful.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "watchResource", - "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": "Indicator whether the anchor should receive notifications of changes to the resource.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "resourceListAnchors", - "attributeDescription": "Referenceable objects that are using the linked to resource.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportingResources", - "attributeDescription": "Resources identified as of interest to the anchor.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "CategoryHierarchyLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "71e4b6fb-3412-4193-aff3-a16eccd87e8e", - "name": "CategoryHierarchyLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship between two glossary categories used to create nested categories.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", - "name": "GlossaryCategory", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "superCategory", - "attributeDescription": "Identifies the parent category.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", - "name": "GlossaryCategory", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "subcategories", - "attributeDescription": "Glossary categories nested inside this category.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "PreferredTerm": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a", - "name": "PreferredTerm", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to an alternative term that the organization prefer is used.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "alternateTerms", - "attributeDescription": "Alternative glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "preferredTerms", - "attributeDescription": "Related glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SolutionBlueprintComposition": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "f1ae975f-f11a-467b-8c7a-b023081e4712", - "name": "SolutionBlueprintComposition", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a solution blueprint and a solution component.", - "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": "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 component's role in the solution.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", - "name": "SolutionBlueprint", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInSolutionBlueprints", - "attributeDescription": "The solutions where this component features.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", - "name": "SolutionComponent", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "containsSolutionComponents", - "attributeDescription": "List of solution components that make up the solution.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataClassHierarchy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "6b947ccc-1a70-4785-9ca3-d6326bc51291", - "name": "DataClassHierarchy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a data class to another in a parent child hierarchy.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "name": "DataClass", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "superDataClass", - "attributeDescription": "Data class that is the more abstract.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "name": "DataClass", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "subDataClasses", - "attributeDescription": "Data classes that are more concrete.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DesignModelImplementation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "c5cb1362-07f6-486b-b80b-ba7922cacee9", - "name": "DesignModelImplementation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a concept model to an implementation.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementationFollowingModel", - "attributeDescription": "Definition of an implementation of the model.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", - "name": "DesignModelElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "modelDescribingBehavior", - "attributeDescription": "Descriptive abstraction.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceResults": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "89c3c695-9e8d-4660-9f44-ed971fd55f88", - "name": "GovernanceResults", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance metric and a data set used to gather measurements from the landscape.", - "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": "query", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Defines how the data items from the data set are converted in measurements for the metric.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "9ada8e7b-823c-40f7-adf8-f164aabda77e", - "name": "GovernanceMetric", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "metrics", - "attributeDescription": "The governance metrics that are captured in this data set.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1449911c-4f44-4c22-abc0-7540154feefb", - "name": "DataSet", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "measurements", - "attributeDescription": "The data set that captures the measurements for this governance metric.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DesignModelElementsInScope": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4ff6d91b-3836-4ba2-9ca9-87da91081faa", - "name": "DesignModelElementsInScope", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a model to an implementation.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "788957f7-a203-45bd-994d-0ab018275821", - "name": "DesignModelScope", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInScope", - "attributeDescription": "Link to a scope where this element is used.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", - "name": "DesignModelElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "inScopeModelElements", - "attributeDescription": "List of elements that belong to this scope.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttributeForSchema": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "86b176a2-015c-44a6-8106-54d5d69ba661", - "name": "AttributeForSchema", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a complex schema type and its attributes.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "786a6199-0ce8-47bf-b006-9ace1c5510e4", - "name": "ComplexSchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentSchemas", - "attributeDescription": "Schema types using this attribute.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "attributes", - "attributeDescription": "The attributes defining the internal structure of the schema type.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AssetLocation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1", - "name": "AssetLocation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Location 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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "knownLocations", - "attributeDescription": "Places where this asset is sited.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "localAssets", - "attributeDescription": "Assets sited at this location.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "IncidentDependency": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "017be6a8-0037-49d8-af5d-c45c41f25e0b", - "name": "IncidentDependency", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an incident report and its predecessors.", - "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": "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 dependency.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", - "name": "IncidentReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "priorReportedIncidents", - "attributeDescription": "Previous reports on the same or related incident.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", - "name": "IncidentReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "followOnReportedIncidents", - "attributeDescription": "Subsequent reports on the same or related incident.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SchemaAttributeType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2d955049-e59b-45dd-8e62-cde1add59f9e", - "name": "SchemaAttributeType", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The schema type for an attribute.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usedInSchemas", - "attributeDescription": "Occurrences of this schema type in other schemas.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "type", - "attributeDescription": "The structure of this attribute.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "GovernanceImplementation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "787eaf46-7cf2-4096-8d6e-671a0819d57e", - "name": "GovernanceImplementation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a governance control and the governance driver it is implementing.", - "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": "rationale", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 reasons for implementing the policy using this control.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", - "name": "GovernancePolicy", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "policies", - "attributeDescription": "The policies that are supported by this control.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", - "name": "GovernanceControl", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "implementations", - "attributeDescription": "The governance controls that implement this policy.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "LinkedMedia": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "cee3a190-fc8d-4e53-908a-f1b9689581e0", - "name": "LinkedMedia", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a media file to another media file and describes relationship.", - "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 relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", - "name": "MediaFile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedMediaFiles", - "attributeDescription": "Link to related media files.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c5ce5499-9582-42ea-936c-9771fbd475f8", - "name": "MediaFile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedMediaFiles", - "attributeDescription": "Link to related media files.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AssignmentScope": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e3fdafe3-692a-46c6-a595-c538cc189dd9", - "name": "AssignmentScope", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a profile, role or project to the elements that they are responsible for managing.", - "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": "assignmentType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 is the scope or nature of the assignment.", - "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": "Further clarification on the assignment.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assignedActors", - "attributeDescription": "Person, team, project or other type of actor that has been assigned.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assignedScope", - "attributeDescription": "Elements describing the resources or action the the actors are responsible for.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ValidValuesImplementation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "d9a39553-6a47-4477-a217-844300c07cf2", - "name": "ValidValuesImplementation", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to an asset that implements the list of valid values.", - "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": "symbolicName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 value value used in code.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "implementationValue", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Value in the asset that maps to this valid value if different from the preferred value.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "additionalValues", - "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 values for additional columns or fields in the reference data store.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", - "name": "ValidValueDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValues", - "attributeDescription": "The valid values set that this element implements.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValuesImplementation", - "attributeDescription": "The asset where the valid values are implemented.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "AssociatedLog": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0999e2b9-45d6-42c4-9767-4b74b0b48b89", - "name": "AssociatedLog", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines destination information for the log of activity associated with an element.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "logSubjects", - "attributeDescription": "Elements that the log records describe.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "associatedLogs", - "attributeDescription": "Destinations for log records.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ExternallySourcedGlossary": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "7786a39c-436b-4538-acc7-d595b5856add", - "name": "ExternallySourcedGlossary", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an open metadata glossary and a related glossary stored outside of the open metadata ecosystem.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "name": "Glossary", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "localGlossary", - "attributeDescription": "Local glossary that relates to this external glossary.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "183d2935-a950-4d74-b246-eac3664b5a9d", - "name": "ExternalGlossaryLink", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "externalGlossaryLink", - "attributeDescription": "Link to a related external glossary.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ExternalReferenceLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "7d818a67-ab45-481c-bc28-f6b1caf12f06", - "name": "ExternalReferenceLink", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to more information.", - "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": "pages", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Range of pages in the external reference that this link refers.", - "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 relevance of this reference to the linked item.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "referenceId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Local identifier for the reference.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedItem", - "attributeDescription": "Item that is referencing this work.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "af536f20-062b-48ef-9c31-1ddd05b04c56", - "name": "ExternalReference", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "externalReference", - "attributeDescription": "Link to more information from an external source.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "MediaReference": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1353400f-b0ab-4ab9-ab09-3045dd8a7140", - "name": "MediaReference", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to related media such as images, videos and audio.", - "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": "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 relevance of this media to the linked item.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mediaUsageOtherId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 code (typically a valid value definition) that defines the media use.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mediaId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Local identifier for the media.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mediaUsage", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "c6861a72-7485-48c9-8040-876f6c342b61", - "name": "MediaUsage", - "description": "Defines how a related media reference should be used.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Icon", - "description": "Provides a small image to represent the asset in tree views and graphs." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Thumbnail", - "description": "Provides a small image about the asset that can be used in lists." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Illustration", - "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "UsageGuidance", - "description": "Provides guidance to a person on how to use the asset." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another usage." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Specific media usage by the consumer that overrides the media usage document in the related media.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "consumingItem", - "attributeDescription": "Item that is referencing this work.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "747f8b86-fe7c-4c9b-ba75-979e093cc307", - "name": "RelatedMedia", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedMedia", - "attributeDescription": "Link to external media.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "ValidValue": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "707a156b-e579-4482-89a5-de5889da1971", - "name": "ValidValue", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between glossary terms where one defines one of the data values for the another.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValueFor", - "attributeDescription": "Glossary terms for data items that can be set to this value.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValues", - "attributeDescription": "Glossary terms for data values that can be used with data items represented by this glossary term.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ExecutionPointUse": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "3eb268f4-9419-4281-a487-d25ccd88eba3", - "name": "ExecutionPointUse", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance execution point definition and the governance definition it supports.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", - "name": "GovernanceDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportsGovernanceDefinitions", - "attributeDescription": "Governance definition that is implemented by this execution point.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", - "name": "ExecutionPointDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "executedThrough", - "attributeDescription": "Description of the execution points that support the implementation of this governance definition.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AgreementItem": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a540c361-0ed1-45d6-b525-007592ae806d", - "name": "AgreementItem", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "An identified item in an agreement.", - "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": "agreementItemId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 item within the agreement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "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": "agreementStart", - "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 this item becomes active in the agreement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "agreementEnd", - "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 this item becomes inactive in the agreement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "usageMeasurements", - "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": "Measurements of the actual use of this item under the agreement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", - "name": "Agreement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "agreementContents", - "attributeDescription": "The agreement that the item relates to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "agreementItems", - "attributeDescription": "Specific items in the agreement.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "TeamStructure": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5ebc4fb2-b62a-4269-8f18-e9237a2229ca", - "name": "TeamStructure", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying a team hierarchy.", - "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": "delegationEscalationAuthority", - "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": "Can delegations and escalations flow on this relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "name": "Team", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "superTeam", - "attributeDescription": "The aggregating team.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "name": "Team", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "subTeam", - "attributeDescription": "The teams where work is delegated to.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "NextGovernanceAction": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4efd16d4-f397-449c-a75d-ebea42fe581b", - "name": "NextGovernanceAction", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Linking of governance actions to show execution sequence.", - "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": "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": "DEPRECATED_ATTRIBUTE", - "attributeDescription": "Trigger one or many next action instances? (deprecated)", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "guard", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 guard that is returned by the previous action that means this next action will run.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mandatoryGuard", - "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 guard mandatory for the next action to run.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", - "name": "GovernanceAction", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "previousActions", - "attributeDescription": "Governance action that triggered this governance action.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c976d88a-2b11-4b40-b972-c38d41bfc6be", - "name": "GovernanceAction", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "followOnActions", - "attributeDescription": "Governance actions that should run next.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "ProjectDependency": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5b6a56f1-68e2-4e10-85f0-fda47a4263fd", - "name": "ProjectDependency", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A dependency relationship between projects.", - "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": "dependencySummary", - "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": "Reasons for the project dependency.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dependentProject", - "attributeDescription": "Projects that are dependent on this project.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dependsOnProjects", - "attributeDescription": "Projects that are delivering resources or outcomes needed by this project.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DetailedProcessingActions": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0ac0e793-6727-45d2-9403-06bd19d9ce2e", - "name": "DetailedProcessingActions", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the individual actions in a data processing description.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", - "name": "DataProcessingDescription", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentProcessingDescriptions", - "attributeDescription": "The aggregating processing descriptions.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7f53928f-9148-4710-ad37-47633f33cb08", - "name": "DataProcessingAction", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProcessingActions", - "attributeDescription": "The individual actions that make up the data processing description.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedTermsAndConditions": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8292343f-6a96-4ca8-a447-38f734c75634", - "name": "AttachedTermsAndConditions", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The terms and conditions 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": "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 related terms and conditions.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "subjectOfTermsAndConditions", - "attributeDescription": "Entity that the terms and condition applied.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "2ddc42d3-7791-4b4e-a064-91df9300290a", - "name": "TermsAndConditions", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "termsAndConditions", - "attributeDescription": "Entitlements, restrictions and obligations.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "InformationSupplyChainLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "207e5130-ab7c-4048-9249-a63a43c13d60", - "name": "InformationSupplyChainLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between two related information supply chain segments -or to their source or destination.", - "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": "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 relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supplyFrom", - "attributeDescription": "Logical source of the information supply chain.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supplyTo", - "attributeDescription": "Logical destination of an information supply chain.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernedBy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "89c3c695-9e8d-4660-9f44-ed971fd55f89", - "name": "GovernedBy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Shows the resources that are governed by a specific governance definition.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", - "name": "GovernanceDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "governedBy", - "attributeDescription": "The governance definition that defines how this element is governed.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "governedElements", - "attributeDescription": "An element that is governed according to the governance definition.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DigitalSupport": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f", - "name": "DigitalSupport", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the digital services supporting each business capability.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "usesDigitalServices", - "attributeDescription": "The digital services that this business capability depends on.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", - "name": "BusinessCapability", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "consumingBusinessCapabilities", - "attributeDescription": "The business capabilities that depend on the digital services.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "NestedLocation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "f82a96c2-95a3-4223-88c0-9cbf2882b772", - "name": "NestedLocation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between two locations to show one is nested inside another.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "groupingLocations", - "attributeDescription": "Location that is covering the broader area.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "nestedLocations", - "attributeDescription": "Location that is nested in this location.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProfileLocation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4", - "name": "ProfileLocation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies an association between an Actor Profile and a Location, such as a person's primary work location.", - "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": "associationType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 that describes the purpose of the association.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", - "name": "ActorProfile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "associatedProfiles", - "attributeDescription": "Profiles of actors associated with the location.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "associatedLocations", - "attributeDescription": "Locations that the actor is associated with.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "LinkedFile": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "970a3405-fde1-4039-8249-9aa5f56d5151", - "name": "LinkedFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A data file that is linked to a file folder (rather than stored in it).", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "229ed5cc-de31-45fc-beb4-9919fd247398", - "name": "FileFolder", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedFolders", - "attributeDescription": "Folders that this file is linked to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedFiles", - "attributeDescription": "Files linked to the folder.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TermCategorization": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "696a81f5-ac60-46c7-b9fd-6979a1e7ad27", - "name": "TermCategorization", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a glossary term into a glossary category.", - "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": "Explanation of why this term is in this categorization.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Status of the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", - "name": "GlossaryCategory", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "categories", - "attributeDescription": "Glossary categories that this term is linked to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "terms", - "attributeDescription": "Glossary terms linked to this category.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "APIEndpoint": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "de5b9501-3ad4-4803-a8b2-e311c72a4336", - "name": "APIEndpoint", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The endpoint for a deployed API.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", - "name": "DeployedAPI", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportedAPIs", - "attributeDescription": "APIs that can be called from this endpoint.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", - "name": "Endpoint", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "accessEndpoints", - "attributeDescription": "Endpoints used to call this API.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "VisibleEndpoint": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb", - "name": "VisibleEndpoint", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Shows that network that an endpoint is visible through.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", - "name": "Endpoint", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "visibleEndpoints", - "attributeDescription": "Endpoint callable through network.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", - "name": "Network", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "visibleInNetwork", - "attributeDescription": "Networks from which the endpoint can be called.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ConnectionEndpoint": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "887a7132-d6bc-4b92-a483-e80b60c86fb2", - "name": "ConnectionEndpoint", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a connection and the endpoint that the connector should use.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "dbc20663-d705-4ff0-8424-80c262c6b8e7", - "name": "Endpoint", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connectionEndpoint", - "attributeDescription": "Server endpoint that provides access to the asset.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", - "name": "Connection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connections", - "attributeDescription": "Connections to this endpoint.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "CategoryAnchor": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "c628938e-815e-47db-8d1c-59bb2e84e028", - "name": "CategoryAnchor", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Connects a glossary category with its owning glossary.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "name": "Glossary", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "anchor", - "attributeDescription": "Owning glossary for this category.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e507485b-9b5a-44c9-8a28-6967f7ff3672", - "name": "GlossaryCategory", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "categories", - "attributeDescription": "Categories owned by this glossary.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SupportedSoftwareCapability": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2480aa71-44c5-414d-8b32-9c4340786d77", - "name": "SupportedSoftwareCapability", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies a software capability that is deployed to an instance of IT infrastructure.", - "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": "deploymentTime", - "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": "Time that the software capability was deployed to the IT Infrastructure.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployer", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person, organization or engine that deployed the software capability.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployerTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 of deployer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deployerPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Identifying property name of deployer.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "capabilityStatus", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", - "name": "OperationalStatus", - "description": "Defines whether a component is operational.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Disabled", - "description": "The component is not operational." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Enabled", - "description": "The component is operational." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The operational status of the software capability on this IT Infrastructure.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "hostedByDeployedITInfrastructure", - "attributeDescription": "IT infrastructure hosting this capability.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", - "name": "SoftwareCapability", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "capabilities", - "attributeDescription": "Capabilities deployed on this IT infrastructure.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProjectTeam": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "746875af-2e41-4d1f-864b-35265df1d5dc", - "name": "ProjectTeam", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The team assigned to a project.", - "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": "teamRole", - "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": "Description of the role of the team in the project.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "projectFocus", - "attributeDescription": "Projects that a team is working on.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", - "name": "Actor", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportingActors", - "attributeDescription": "People and teams supporting this project.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProcessOutput": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e3e40f99-70fe-478c-9676-78a50cded70b", - "name": "ProcessOutput", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The feed of data from a process.", - "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": "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 data feed.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "name": "Process", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "producedByProcess", - "attributeDescription": "Process that is creating and updating the information in the asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "processOutputData", - "attributeDescription": "Asset receiving output data.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "LineageMapping": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff", - "name": "LineageMapping", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between two schema attributes.", - "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": "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 name of the lineage flow.", - "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 and purpose of the lineage flow.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "sourceElement", - "attributeDescription": "Source Attribute.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "targetElement", - "attributeDescription": "Target Attribute.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "ValidValuesAssignment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "c5d48b73-eadd-47db-ab64-3be99b2fb32d", - "name": "ValidValuesAssignment", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a referenceable to its 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", - "propertiesDefinition": [ - { - "headerVersion": 1, - "attributeName": "strictRequirement", - "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": "Only values from the ValidValues set/definition are allowed.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValuesConsumer", - "attributeDescription": "The valid values set that this element belongs to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", - "name": "ValidValueDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "validValues", - "attributeDescription": "A definition of the valid values for this element.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "Peer": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4a316abe-bccd-4d11-ad5a-4bfb4079b80b", - "name": "Peer", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying a person's peer network.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", - "name": "Person", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "peers", - "attributeDescription": "List of this person's peer network.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bbbd285", - "name": "Person", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "peers", - "attributeDescription": "List of this person's peer network.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ActionAssignment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "af2b5fab-8f83-4a2b-b749-1e6219f61f79", - "name": "ActionAssignment", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A person who has been assigned to complete the to do (action).", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assignedResources", - "attributeDescription": "One or more people assigned to complete the action (to do).", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", - "name": "Actor", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assignedActor", - "attributeDescription": "The person/people assigned to perform the action(s) requested in the to do.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DigitalServiceDesign": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2", - "name": "DigitalServiceDesign", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the solution blueprint for 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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "describesDigitalService", - "attributeDescription": "Digital service described by the blueprint.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", - "name": "SolutionBlueprint", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "digitalServiceDesigns", - "attributeDescription": "The difference versions of the digital service's designs.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "Certification": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "390559eb-6a0c-4dd7-bc95-b9074caffa7f", - "name": "Certification", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "An awarded certification of a specific type.", - "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 notes about the certification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "custodianTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element referenced in the custodian property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "custodian", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 person, engine or organization that will ensure the certification is honored.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "certifiedByTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element referenced in the certifiedBy property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "certificateGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 actual certificate.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "start", - "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 for the certification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "recipientPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the recipient property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "certifiedByPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the certifiedBy property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "custodianPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the custodian property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "recipient", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 person or organization that received the certification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "end", - "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": "End date for the certification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "recipientTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element referenced in the recipient property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "conditions", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Any special conditions or endorsements over the basic certification type.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "certifiedBy", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person or organization awarded the certification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "certifies", - "attributeDescription": "Items certified by this type of certification.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "97f9ffc9-e2f7-4557-ac12-925257345eea", - "name": "CertificationType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "certifications", - "attributeDescription": "The types of certifications that apply.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "ConsolidatedDuplicateLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82", - "name": "ConsolidatedDuplicateLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a detected duplicate entity and an entity that contains the combined values of this entity and its other duplicates.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "consolidatedDuplicateOrigin", - "attributeDescription": "Detected duplicate element - the source of the properties.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "consolidatedDuplicateResult", - "attributeDescription": "Element resulting from combining the duplicate entities.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "NetworkGatewayLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3", - "name": "NetworkGatewayLink", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link from a network to one of its network gateways.", - "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 for the network mapping.", - "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 and purpose of the network mapping.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "externalEndpointAddress", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Network address used by callers to the network gateway.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "internalEndpointAddress", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Network address that the network gateway maps the request to.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "9bbae94d-e109-4c96-b072-4f97123f04fd", - "name": "NetworkGateway", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "gateways", - "attributeDescription": "Gateways to other networks.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e0430f59-f021-411a-9d81-883e1ff3f6f6", - "name": "Network", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "networkConnections", - "attributeDescription": "Connections to different networks.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "ConnectionConnectorType": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96", - "name": "ConnectionConnectorType", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a connection and the connector type that should be used.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", - "name": "Connection", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connections", - "attributeDescription": "Connections using this connector type.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", - "name": "ConnectorType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "connectorType", - "attributeDescription": "Type of connector to use for the asset.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "Antonym": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "ea5e126a-a8fa-4a43-bcfa-309a98aa0185", - "name": "Antonym", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between glossary terms that have the opposite meaning.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "antonyms", - "attributeDescription": "Glossary terms with the opposite meaning.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "antonyms", - "attributeDescription": "Glossary terms with the opposite meaning.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GraphEdgeLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "503b4221-71c8-4ba9-8f3d-6a035b27971c", - "name": "GraphEdgeLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A relationship between a graph edge and a vertex.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", - "name": "GraphEdge", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "edges", - "attributeDescription": "Edges for this vertex.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "1252ce12-540c-4724-ad70-f70940956de0", - "name": "GraphVertex", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "vertices", - "attributeDescription": "Vertices for this edge.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GlossaryTermEvolution": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "b323c9cf-f254-49c7-a391-11222e9da70f", - "name": "GlossaryTermEvolution", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a live glossary term with a future version of the term.", - "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": "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": "Short description of the update.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c04e29b2-2d66-48fc-a20d-e59895de6040", - "name": "ControlledGlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "glossaryTermUpdates", - "attributeDescription": "A glossary term that contains proposed updates to the live glossary term.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "liveGlossaryTerm", - "attributeDescription": "The approved term that is in use.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "SupportedGovernanceService": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2726df0e-4f3a-44e1-8433-4ca5301457fd", - "name": "SupportedGovernanceService", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a governance engine and one of its services.", - "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": "serviceRequestType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Request type supported by the governance action service (overrides requestType on call to governance service if specified).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 request type used to call the service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "requestParameters", - "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 configure the governance service for this type of request.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3fa23d4a-aceb-422f-9301-04ed474c6f74", - "name": "GovernanceEngine", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "calledFromGovernanceEngines", - "attributeDescription": "Governance Engine making use of the governance service.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "191d870c-26f4-4310-a021-b8ca8772719d", - "name": "GovernanceService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportedGovernanceServices", - "attributeDescription": "Governance service that is part of the governance engine.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "DigitalServiceManagement": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "91ff7542-c275-4cd3-b367-97eec3360422", - "name": "DigitalServiceManagement", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the individual responsible for each digital service.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "name": "DigitalService", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "managesDigitalServices", - "attributeDescription": "The digital services that this individual manages.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "digitalServiceManagers", - "attributeDescription": "The roles for managing this digital service.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ISARelationship": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "50fab7c7-68bc-452f-b8eb-ec76829cac85", - "name": "ISARelationship", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a more general glossary term and a more specific definition.", - "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 relationship.", - "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": "An expression that explains the relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "classifies", - "attributeDescription": "More specific glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "isA", - "attributeDescription": "More general glossary terms.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "Meetings": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "a05f918e-e7e2-419d-8016-5b37406df63a", - "name": "Meetings", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A meeting about a specific project, deliverable, situation or plan of action.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6bf90c79-32f4-47ad-959c-8fff723fe744", - "name": "Meeting", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "meetings", - "attributeDescription": "Related meetings.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "meetingOwner", - "attributeDescription": "Person, project, community or team that called the meeting.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "SearchKeywordLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "d2f8df24-6905-49b8-b389-31b2da156ece", - "name": "SearchKeywordLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Provides a link to a keyword that helps to identify specific elements in a search.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedElements", - "attributeDescription": "Element described by the search keyword.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", - "name": "SearchKeyword", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "searchKeywords", - "attributeDescription": "Keywords to describe the element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceControlLink": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "806933fb-7925-439b-9876-922a960d2ba1", - "name": "GovernanceControlLink", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between two related governance controls.", - "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 relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", - "name": "GovernanceControl", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkingControls", - "attributeDescription": "Governance controls that ate dependent on this control.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", - "name": "GovernanceControl", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "linkedControls", - "attributeDescription": "Governance controls that support the implementation of this control.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DesignModelOwnership": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "d57043c2-eeab-4167-8d0d-2223af8aee93", - "name": "DesignModelOwnership", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links design model elements to their owning model.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", - "name": "DesignModel", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "owningDesignModel", - "attributeDescription": "Owning model.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", - "name": "DesignModelElement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "designModelElements", - "attributeDescription": "List of elements that belong to this model.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedRating": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344", - "name": "AttachedRating", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a rating to an item.", - "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": "isPublic", - "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 the attached rating visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "ratingAnchor", - "attributeDescription": "Element that is rated.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "7299d721-d17f-4562-8286-bcd451814478", - "name": "Rating", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "starRatings", - "attributeDescription": "Accumulated ratings.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataClassAssignment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4df37335-7f0c-4ced-82df-3b2fd07be1bd", - "name": "DataClassAssignment", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a data class to an asset or schema element to define its logical data 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": "method", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Method used to identify data class.", - "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": "2611892f-0527-478f-8843-a3aa2b9abb47", - "name": "DataClassAssignmentStatus", - "description": "Defines the provenance and confidence of a data class assignment.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The data class assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The data class assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The data class assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The data class assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The data class assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The data class assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another data class assignment status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "partialMatch", - "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": "Are there data values outside of the data class specification?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the correctness of the data class assignment.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "threshold", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "52aeb769-37b7-4b30-b949-ddc7dcebcfa2", - "name": "float", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_FLOAT" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "What was the threshold result used to determine that the data class matched.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "valueFrequency", - "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": "How often does the data class specification match the data values.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for validating the data class assignment.", - "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": "Person, organization or automated process that created the data class assignment.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "elementsAssignedToDataClass", - "attributeDescription": "Elements identified as managing data values that match the specification of a data class.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "name": "DataClass", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataClassesAssignedToElement", - "attributeDescription": "Logical data type for this element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedNoteLog": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4f798c0c-6769-4a2d-b489-d2714d89e0a4", - "name": "AttachedNoteLog", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a note log to an item.", - "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": "isPublic", - "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 the attached note log visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "describes", - "attributeDescription": "Subject of the note log.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", - "name": "NoteLog", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "noteLogs", - "attributeDescription": "Log of related notes.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "CrowdSourcingContribution": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4db83564-b200-4956-94a4-c95a5c30e65a", - "name": "CrowdSourcingContribution", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines one of the actors contributing content to a new description or asset.", - "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": "roleType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "0ded50c2-17cc-4ecf-915e-908e66dbb27f", - "name": "CrowdSourcingRole", - "description": "Type of contributor to new information and/or assets.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Proposer", - "description": "Actor that creates the initial version." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Reviewer", - "description": "Actor that provided feedback." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Supporter", - "description": "Actor that agrees with the definition." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Approver", - "description": "Actor that declares the definition should be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another role." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Type of contribution.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contributions", - "attributeDescription": "Items that this person has contributed.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", - "name": "Actor", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "contributors", - "attributeDescription": "The person/people making the contribution.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "InformationSupplyChainComposition": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "fcdccfa3-e9f0-4543-8720-1958799fb6dc", - "name": "InformationSupplyChainComposition", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship identifying the segments in an information supply chain.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "fa6de61d-98cb-48c4-b21f-ab7186235fd4", - "name": "InformationSupplyChain", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "informationSupplyChains", - "attributeDescription": "Owning information supply chain.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1", - "name": "InformationSupplyChainSegment", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "segments", - "attributeDescription": "A role performed by this person.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ProcessHierarchy": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "70dbbda3-903f-49f7-9782-32b503c43e0e", - "name": "ProcessHierarchy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A hierarchical relationship between processes.", - "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": "containmentType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "1bb4b908-7983-4802-a2b5-91b095552ee9", - "name": "ProcessContainmentType", - "description": "The containment relationship between two processes.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "OWNED", - "description": "The parent process owns the child process in the relationship, such that if the parent is removed the child should also be removed. A child can have at most one such parent." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "USED", - "description": "The child process is simply used by the parent. A child process can have many such relationships to parents." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "OTHER", - "description": "None of the above." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The type of containment that exists between the related processes.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "name": "Process", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "parentProcess", - "attributeDescription": "The more abstract or higher-level process.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "name": "Process", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "childProcess", - "attributeDescription": "The more detailed or lower-level process.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AdjacentLocation": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "017d0518-fc25-4e5e-985e-491d91e61e17", - "name": "AdjacentLocation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between two locations that are next to one another.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "peerLocations", - "attributeDescription": "Location that is adjacent to this location.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "peerLocations", - "attributeDescription": "Location that is adjacent to this location.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SemanticAssignment": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e6670973-645f-441a-bec7-6f5570345b92", - "name": "SemanticAssignment", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a glossary term to another element such as an asset or schema element to define its meaning.", - "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 relationship.", - "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 describing the relationship.", - "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": "c8fe36ac-369f-4799-af75-46b9c1343ab3", - "name": "TermAssignmentStatus", - "description": "Defines the provenance and confidence of a term assignment.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The term assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The term assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The term assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The term assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The term assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The term assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term assignment status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the correctness of the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assignedElements", - "attributeDescription": "Elements identified as managing data that has the same meaning as this glossary term.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "meaning", - "attributeDescription": "Semantic definition for this element.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AgreementActor": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "1c811d0b-e9ce-44af-b6ed-133e73322e32", - "name": "AgreementActor", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "An actor identified in an agreement.", - "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": "actorName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 identify a specific actor in the agreement.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", - "name": "Agreement", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "relatedAgreements", - "attributeDescription": "The agreements that include the actor.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "16d2c34a-43db-476b-93ae-6a2996f514ec", - "name": "Actor", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "agreementActors", - "attributeDescription": "The actors that are named in the agreement.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": true - } - }, - "IncidentOriginator": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e490772e-c2c5-445a-aea6-1aab3499a76c", - "name": "IncidentOriginator", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an incident report and its originator (person, process, engine, ...).", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "originators", - "attributeDescription": "Source(s) of the incident report.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", - "name": "IncidentReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "resultingIncidentReports", - "attributeDescription": "Descriptions of detected incidents.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "PortSchema": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "B216fA00-8281-F9CC-9911-Ae6377f2b457", - "name": "PortSchema", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between a Port and a SchemaType", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", - "name": "Port", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "port", - "attributeDescription": "Port", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "name": "SchemaType", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "SchemaType", - "attributeDescription": "SchemaType", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "AttachedTag": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "4b1641c4-3d1a-4213-86b2-d6968b6c65ab", - "name": "AttachedTag", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links an informal tag to an item.", - "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": "isPublic", - "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 the attached tag visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "taggedElement", - "attributeDescription": "Element that is tagged.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ba846a7b-2955-40bf-952b-2793ceca090a", - "name": "InformalTag", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "tags", - "attributeDescription": "Accumulated tags.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "TermHASARelationship": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c", - "name": "TermHASARelationship", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Defines the relationship between a spine object and a spine attribute.", - "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 relationship.", - "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": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The status of or confidence in the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the relationship.", - "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": "Person, organization or automated process that created the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "objects", - "attributeDescription": "Objects where this attribute may occur.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "attributes", - "attributeDescription": "Typical attributes for this object.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ActionTarget": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "207e2594-e3e4-4be8-a12c-4c401656e241", - "name": "ActionTarget", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Associates a To Do with one or more elements to work on.", - "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": "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": "The status of the work on this element.", - "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/time that work started on this element.", - "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/time that work stopped on this element.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "actionTargetName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 to identify the action target to the actor that processes it.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "completionMessage", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Message to provide additional information on the results of acting on the target by the actor or the reasons for any failures.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "93dbc58d-c826-4bc2-b36f-195148d46f86", - "name": "ToDo", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "identifiedToDoActions", - "attributeDescription": "Actions that have been identified for this element.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "elementsToWorkOn", - "attributeDescription": "Elements that will be updated or used to complete the action.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceResponse": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8845990e-7fd9-4b79-a19d-6c4730dadd6b", - "name": "GovernanceResponse", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a governance policy to a governance driver that it is supporting.", - "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": "rationale", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Describes the reasoning for defining the policy in support of the driver.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "c403c109-7b6b-48cd-8eee-df445b258b33", - "name": "GovernanceDriver", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "drivers", - "attributeDescription": "Drivers that justify this policy.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a7defa41-9cfa-4be5-9059-359022bb016d", - "name": "GovernancePolicy", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "policies", - "attributeDescription": "Governance policies that support this governance driver.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SolutionComponentPort": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "5652d03a-f6c9-411a-a3e4-f490d3856b64", - "name": "SolutionComponentPort", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a solution component and its ports.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", - "name": "SolutionComponent", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "solutionComponent", - "attributeDescription": "Owning solution component that this port belongs to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "name": "SolutionPort", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "solutionPorts", - "attributeDescription": "List ports for this solution component.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ValidValuesMapping": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "203ce62c-3cbf-4542-bf82-81820cba718f", - "name": "ValidValuesMapping", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "A link between two valid values from different valid value sets that have equivalent meanings.", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "associationDescription", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 describing how they are related.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 notes on the mapping.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for the mapping.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 between 0 and 100 indicating the confidence that the match is correct.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", - "name": "ValidValueDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "matchingValue", - "attributeDescription": "A valid value from a different valid value set that is equivalent.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "09b2133a-f045-42cc-bb00-ee602b74c618", - "name": "ValidValueDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "matchingValue", - "attributeDescription": "A valid value from a different valid value set that is equivalent.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "GovernanceDefinitionScope": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "3845b5cc-8c85-462f-b7e6-47472a568793", - "name": "GovernanceDefinitionScope", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between a scope - such as a digital service, infrastructure element or organization - and a governance definition.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "definitionAppliesTo", - "attributeDescription": "Elements defining the scope that the governance definition applies to.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", - "name": "GovernanceDefinition", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "associatedGovernanceDefinitions", - "attributeDescription": "Governance definitions for this scope.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DataProfileLogFile": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "75026fac-f9e5-4da8-9ad1-e9c68d47f577", - "name": "DataProfileLogFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link to the log file containing the data profile information.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "368e6fb3-7323-4f81-a723-5182491594bd", - "name": "DataProfileLogAnnotation", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProfileAnnotations", - "attributeDescription": "The annotations that refer to this log file.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ff4c8484-9127-464a-97fc-99579d5bc429", - "name": "LogFile", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "dataProfileLogFiles", - "attributeDescription": "Location of the data profile information.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "ImpactedResource": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "0908e153-e0fd-499c-8a30-5ea8b81395cd", - "name": "ImpactedResource", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Link between an impacted referenceable and an incident report.", - "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": "severityLevelIdentifier", - "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 severe is the impact on the resource?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "impactedResources", - "attributeDescription": "Resources impacted by the incident.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", - "name": "IncidentReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "incidentReports", - "attributeDescription": "Descriptions of incidents affection this resource and the action taken.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AssetDiscoveryReport": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "7eded424-f176-4258-9ae6-138a46b2845f", - "name": "AssetDiscoveryReport", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "An analysis report from a discovery service.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "discoveryReportTarget", - "attributeDescription": "The asset that is analyzed in the report.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "acc7cbc8-09c3-472b-87dd-f78459323dcb", - "name": "OpenDiscoveryAnalysisReport", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "assetDiscoveryAnalysisReports", - "attributeDescription": "The reports produced about this asset.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "AttachedLike": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "e2509715-a606-415d-a995-61d00503dad4", - "name": "AttachedLike", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a like to an item.", - "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": "isPublic", - "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 the attached like visible to more than the originator?", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "likeAnchor", - "attributeDescription": "Element that is liked.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "deaa5ca0-47a0-483d-b943-d91c76744e01", - "name": "Like", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "likes", - "attributeDescription": "Accumulated likes.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "NoteLogAuthorship": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "8f798c0c-6769-4a2d-b489-12714d89e0a4", - "name": "NoteLogAuthorship", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Links a note log to an author.", - "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", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "name": "PersonRole", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "authors", - "attributeDescription": "Person contributing to the note log.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "646727c7-9ad4-46fa-b660-265489ad96c6", - "name": "NoteLog", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "authoredNoteLogs", - "attributeDescription": "Note log containing contributions.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "SupplementaryProperties": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd", - "name": "SupplementaryProperties", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Provides additional descriptive properties to augment technical metadata extracted from a third party technology.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supplementsElement", - "attributeDescription": "Describes this technical element.", - "attributeCardinality": "AT_MOST_ONE" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supplementaryProperties", - "attributeDescription": "Provides more information about this element.", - "attributeCardinality": "AT_MOST_ONE" - }, - "multiLink": false - } - }, - "PermittedProcessing": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "b472a2ec-f419-4d3f-86fb-e9d97365f961", - "name": "PermittedProcessing", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Relationship relates data processing descriptions with purposes (outcomes).", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", - "name": "DataProcessingPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "supportedPurposes", - "attributeDescription": "The supported outcomes from the processing.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", - "name": "DataProcessingDescription", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "permittedProcessing", - "attributeDescription": "The description of the processing that is permitted for the purposes.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "DigitalSubscriber": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4", - "name": "DigitalSubscriber", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "The link between a digital subscriber and the subscription details.", - "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": "subscriberId", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 subscriber.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "digitalSubscribers", - "attributeDescription": "The digital subscribers registered under a subscription.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", - "name": "DigitalSubscription", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "digitalSubscriptions", - "attributeDescription": "The digital subscriptions in use by the subscriber.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - }, - "CatalogTarget": { - "relationshipDef": { - "class": "RelationshipDef", - "headerVersion": 1, - "guid": "bc5a5eb1-881b-4055-aa2c-78f314282ac2", - "name": "CatalogTarget", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "RELATIONSHIP_DEF", - "description": "Identifies an element that an integration connector is to work with.", - "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": "catalogTargetName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Symbolic name of the catalog target to help the integration connector to choose when to use it.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "propagationRule": "NONE", - "endDef1": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "759da11b-ebb6-4382-bdc9-72adc7c922db", - "name": "IntegrationConnector", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "cataloguedByConnectors", - "attributeDescription": "An integration connector managing metadata synchronization.", - "attributeCardinality": "ANY_NUMBER" - }, - "endDef2": { - "headerVersion": 1, - "entityType": { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - }, - "attributeName": "catalogTargets", - "attributeDescription": "An open metadata element that the integration connector is working on.", - "attributeCardinality": "ANY_NUMBER" - }, - "multiLink": false - } - } - }, - "classifications": { - "SecurityGroupMembership": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "21a16f1e-9231-4983-b371-a0686d555273", - "name": "SecurityGroupMembership", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the set of user groups that this user identity is a member of.", - "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": "groups", - "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 user group names.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", - "name": "UserIdentity", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "RequestResponseInterface": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "14a29330-e830-4343-a41e-d57e2cec82f8", - "name": "RequestResponseInterface", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies an API that supports a request response interaction style.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", - "name": "DeployedAPI", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceDomainSet": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e66bb681-99a1-4712-a2c9-712c8b0f83ae", - "name": "GovernanceDomainSet", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the definitions for the different governance domains in use by the organization.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SpineAttribute": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "ccb749ba-34ec-4f71-8755-4d8b383c34c3", - "name": "SpineAttribute", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary term that describes an attribute of a spine object.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "LineageLog": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "876e55db-27b9-4132-ad00-bbf882ea8e8a", - "name": "LineageLog", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A collection of related lineage log records.", - "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Notes on usage, purpose and type of lineage log events.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "process", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 automated process that processes this lineage log.", - "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": "Source of the lineage log.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "KnownDuplicate": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e55062b2-907f-44bd-9831-255642285731", - "name": "KnownDuplicate", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines that duplicate resolution processing is required.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PolicyEnforcementPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "9a68b20b-3f84-4d7d-bc9e-790c4b27e685", - "name": "PolicyEnforcementPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes the capability where the result of a policy decision are enforced.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "updatedBy": "ODPi 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": "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": "Unique name of the policy enforcement point.", - "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 policy enforcement point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "pointType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Descriptive type information about the policy enforcement point.", - "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": "pointType", - "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy enforcement point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "TypeEmbeddedAttribute": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e2bb76bb-774a-43ff-9045-3a05f663d5d9", - "name": "TypeEmbeddedAttribute", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Type information embedded within an attribute.", - "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": "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": "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 name for the schema type.", - "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 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": "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 type (primitive and enum types).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "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": "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": "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 schema type.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "schemaTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 schema type.", - "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": "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 type (literal schema type).", - "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": "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 schema type.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "name": "SchemaAttribute", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "BusinessSignificant": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "085febdd-f129-4f4b-99aa-01f3e6294e9f", - "name": "BusinessSignificant", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A referenceable item that is meaningful to business users.", - "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": "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 item in business terms.", - "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 where this item is meaningful.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "businessCapabilityGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 business capability that this relevant to.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "LineageLogFile": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "9992758d-d7dd-432d-b84e-62fe007a6364", - "name": "LineageLogFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A data file containing operational lineage events.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Criticality": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "d46d211a-bd22-40d5-b642-87b4954a167e", - "name": "Criticality", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines how critical the related data items are to the organization.", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information relating to the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "level", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "22bcbf49-83e1-4432-b008-e09a8f842a1e", - "name": "CriticalityLevel", - "description": "Defines how important a data item is to the organization.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the criticality of this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Marginal", - "description": "The data is of minor importance to the organization." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Important", - "description": "The data is important to the running of the organization." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Critical", - "description": "The data is critical to the operation of the organization." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Catastrophic", - "description": "The data is so important that its loss is catastrophic putting the future of the organization in doubt." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another criticality level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the criticality of this data." - } - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "levelIdentifier", - "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the criticality level of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the classification (0=none -> 100=excellent).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "statusIdentifier", - "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", - "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": "Source of the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", - "name": "GovernanceClassificationStatus", - "description": "Defines the status values of a governance action classification.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The classification assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The classification assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The classification assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The classification assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The classification assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The classification assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another classification assignment status." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "statusIdentifier", - "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "levelIdentifier", - "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": "Defined criticality level for this classification. Values defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "DataStoreEncoding": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "f08e48b5-6b66-40f5-8ff6-c2bfe527330b", - "name": "DataStoreEncoding", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Description for how data is organized and represented in a data store.", - "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": "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 type.", - "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": "Language used in the encoding.", - "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 the encoding.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "properties", - "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 encoding.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "30756d0b-362b-4bfa-a0de-fce6a8f47b47", - "name": "DataStore", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "MeteringLog": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "161b37c9-1d51-433b-94ce-5a760a198236", - "name": "MeteringLog", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A collection of related metering log records.", - "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": "process", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 automated process that processes this metering log.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Notes on usage, purpose and type of metering log records in this collection.", - "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": "Source of the metering log.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "UserProfileManager": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "53ef4062-9e0a-4892-9824-8d51d4ad59d3", - "name": "UserProfileManager", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A system that sores descriptions of individuals and their roles/interests in an organization.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AssetOrigin": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e530c566-03d2-470a-be69-6f52bfbd5fb7", - "name": "AssetOrigin", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes the origin of an asset.", - "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": "businessCapabilityPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the businessCapability property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "organization", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 (GUID) of the organization where this asset originated from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "organizationPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the organization property.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "otherOriginValues", - "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": "Descriptive labels describing origin of the asset.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "businessCapability", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 (GUID) of the business capability where this asset originated from.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ContextDefinition": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "54f9f41a-3871-4650-825d-59a41de01330", - "name": "ContextDefinition", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary term that describes a context where processing or decisions occur.", - "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 for how the context is 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": "Scope of influence of the context.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "StewardshipServer": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "eaaeaa31-6f8b-4ed5-88fe-422ed3733158", - "name": "StewardshipServer", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server dedicated to managing stewardship activity relating to governance 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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "FileManager": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "eadec807-02f0-4d6f-911c-261eddd0c2f5", - "name": "FileManager", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a software server capability as a manager of a collection of files and folders.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceExpectations": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "fcda7261-865d-464d-b279-7d9880aaab39", - "name": "GovernanceExpectations", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A set of expectation values on the performance and use of the connected resource.", - "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": "counts", - "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": "A set of metric name to count value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "values", - "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": "A set of metric name to string value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "flags", - "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": "A set of metric name to boolean value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "LogAnalysis": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "38cf214c-244d-435c-a328-251026356e6b", - "name": "LogAnalysis", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A set of results from the analysis of a log record - or collection of log records.", - "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Notes on the processing of the log records.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "process", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 automated process that produced this analysis.", - "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": "Source of the analysis process.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "counts", - "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": "A set of metric name to count value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "values", - "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": "A set of metric name to string value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "flags", - "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": "A set of metric name to boolean value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SpineObject": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "a41ee152-de1e-4533-8535-2f8b37897cac", - "name": "SpineObject", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary term that describes a type of spine object.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "VerificationPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "12d78c95-3879-466d-883f-b71f6477a741", - "name": "VerificationPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A governance rule that tests if a required condition is true or raises an exception if not.", - "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", - "name": "int", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Qualified name of the enforcement point definition.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "MobileAsset": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "b25fb90d-8fa2-4aa9-b884-ff0a6351a697", - "name": "MobileAsset", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An asset not restricted to a single physical location.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceMeasurements": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "9d99d962-0214-49ba-83f7-c9b1f9f5bed4", - "name": "GovernanceMeasurements", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A set of measurements on the performance and use of the connected resource.", - "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": "measurementCounts", - "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": "A set of metric name to current count value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "measurementValues", - "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": "A set of metric name to current value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "measurementFlags", - "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": "A set of metric name to current boolean value pairs.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "DigitalProduct": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4aaaa7ca-6b4b-4c4b-997f-d5dfd42917b0", - "name": "DigitalProduct", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies an element that represents a digital product.", - "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": [ - "DRAFT", - "PREPARED", - "PROPOSED", - "APPROVED", - "REJECTED", - "APPROVED_CONCEPT", - "UNDER_DEVELOPMENT", - "DEVELOPMENT_COMPLETE", - "APPROVED_FOR_DEPLOYMENT", - "ACTIVE", - "DISABLED", - "DEPRECATED", - "OTHER", - "DELETED" - ], - "initialStatus": "ACTIVE", - "propertiesDefinition": [ - { - "headerVersion": 1, - "attributeName": "syncDatesByKey", - "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": "DEPRECATED_ATTRIBUTE", - "attributeDescription": "Collection of synchronization dates identified by a key (deprecated, added in error).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "maturity", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Level of maturity for the product.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "serviceLife", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Length of time that the product is expected to be in service.", - "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": "Any additional properties needed to describe the product.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "withdrawDate", - "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": "What date what the product withdrawn, preventing new consumers.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "nextVersion", - "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 is the next version expected to be released.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "productName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 product.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "productType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 or category of the product.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "currentVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Which is the current supported version that is recommended for consumers.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "introductionDate", - "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 that the product was made available.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ReportingEngine": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e07eefaa-16e0-46cf-ad54-bed47fb15812", - "name": "ReportingEngine", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An engine capable of creating reports by combining information from multiple 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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "name": "Engine", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Set": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3947f08d-7412-4022-81fc-344a20dfbb26", - "name": "Set", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines that a collection is an unordered set of items.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Taxonomy": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "37116c51-e6c9-4c37-942e-35d48c8c69a0", - "name": "Taxonomy", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary that includes a taxonomy.", - "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": "organizingPrinciple", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Characteristics that influence the organization of the taxonomy.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "name": "Glossary", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PolicyRetrievalPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "d7367412-7ba6-409f-84db-42b51e859367", - "name": "PolicyRetrievalPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes the capability where policies are retrieved.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "updatedBy": "ODPi 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": "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": "Unique name of the policy retrieval point.", - "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 policy retrieval point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "pointType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Descriptive type information about the policy retrieval point.", - "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": "pointType", - "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy retrieval point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ConnectorTypeDirectory": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "9678ef11-ed7e-404b-a041-736df7514339", - "name": "ConnectorTypeDirectory", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a collection of related connector types.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ChangeManagementLibrary": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4e236548-b802-4a1d-a329-4abdeaae5323", - "name": "ChangeManagementLibrary", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines a managed collection of requirements, defects and proposed changes to a project.", - "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": "libraryType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 library - may be a product name or open source project name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PrimaryCategory": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3a6c4ba7-3cc5-48cd-8952-bwra92da016d", - "name": "PrimaryCategory", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines a category as being the base category of a glossary term", - "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": "categoryQualifiedName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 qualified name of the primary category of a GlossaryTerm.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Webserver": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "d13e1cc5-bb7e-41ec-8233-9647fbf92a19", - "name": "Webserver", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server that supports HTTP-based application such as websites and REST services.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "PublisherInterface": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4fdedcd5-b186-4bee-887a-02fa29a10750", - "name": "PublisherInterface", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies an API that sends out events to other listening components.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", - "name": "DeployedAPI", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Folder": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3c0fa687-8a63-4c8e-8bda-ede9c78be6c7", - "name": "Folder", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines that a collection should be treated like a file folder.", - "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": "orderBy", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "1d412439-4272-4a7e-a940-1065f889fc56", - "name": "OrderBy", - "description": "Defines the sequencing for a collection.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Name", - "description": "Order by name property." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Owner", - "description": "Order by owner property." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "DateAdded", - "description": "Order by date added to the metadata collection." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "DateUpdated", - "description": "Order by date that the asset was updated." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "DateCreated", - "description": "Order by date that the asset was created." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Order by another property." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Definition for how elements in the collection should be ordered.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "otherPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property to use for ordering.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Retention": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "83dbcdf2-9445-45d7-bb24-9fa661726553", - "name": "Retention", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines the retention requirements for related data items.", - "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": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information relating to the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "deleteAfter", - "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 when delete can take place.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the classification (0=none -> 100=excellent).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "archiveAfter", - "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 when archiving can take place.", - "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": "Source of the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "basis", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "de79bf78-ecb0-4fd0-978f-ecc2cb4ff6c7", - "name": "RetentionBasis", - "description": "Defines the retention requirements associated with a data item.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the retention requirements for this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Temporary", - "description": "This data is temporary." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "ProjectLifetime", - "description": "The data is needed for the lifetime of the referenced project." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "TeamLifetime", - "description": "The data is needed for the lifetime of the referenced team." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "ContractLifetime", - "description": "The data is needed for the lifetime of the referenced contract." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "RegulatedLifetime", - "description": "The retention period for the data is defined by the referenced regulation." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "TimeBoxedLifetime", - "description": "The data is needed for the specified time." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another basis for determining the retention requirement." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "basisIdentifier", - "attributeDescription": "Deprecated attribute. Use the basisIdentifier attribute to describe the retention basis of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "basisIdentifier", - "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": "Defined retention basis for this classification. Values defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "statusIdentifier", - "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "associatedGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Related entity used to determine the retention period.", - "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", - "name": "GovernanceClassificationStatus", - "description": "Defines the status values of a governance action classification.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The classification assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The classification assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The classification assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The classification assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The classification assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The classification assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another classification assignment status." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "statusIdentifier", - "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SourceControlLibrary": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "0ef3c90d-20d7-4259-8d66-9c8bb109f2ae", - "name": "SourceControlLibrary", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines a software source code library that provides version control.", - "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": "libraryType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 library - may be a product name or open source project name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceProject": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "37142317-4125-4046-9514-71dc5031563f", - "name": "GovernanceProject", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies that a project is rolling out capability to support the governance program.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "LatestChange": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "adce83ac-10f1-4279-8a35-346976e94466", - "name": "LatestChange", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines the latest change to an anchor entity and its associated attachments.", - "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": "changeTarget", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a0b7d7a0-4af5-4539-9b81-cbef52d8cc5d", - "name": "LatestChangeTarget", - "description": "Defines the type of repository element that has changed.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "EntityStatus", - "description": "The status of the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "EntityProperty", - "description": "A property in the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "EntityClassification", - "description": "A classification attached to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "EntityRelationship", - "description": "A relationship linking the anchor entity to an attachment has changed." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Attachment", - "description": "An entity attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "AttachmentStatus", - "description": "The status of an entity attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "AttachmentProperty", - "description": "A property in an entity attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 7, - "value": "AttachmentClassification", - "description": "A classification attached to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 8, - "value": "AttachmentRelationship", - "description": "A relationship linking to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of change." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The relationship of element that has been changed to the anchor.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "changeAction", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "032d844b-868f-4c4a-bc5d-81f0f9704c4d", - "name": "LatestChangeAction", - "description": "Defines the type of change that was made to a repository instance.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Created", - "description": "The target element has been created." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Updated", - "description": "The properties of the target element have been changed." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deleted", - "description": "The target element has been deleted." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of action." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The type of change.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classificationName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "If a classification name changed, this is its name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "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": "If an attached entity or relationship to it changed, this is its unique identifier of the entity.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "attachmentType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "If an attached entity or relationship to changed, this is its unique type name of the entity.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "relationshipType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "If an attached entity or relationship to changed, this is its unique type name of the relationship.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "user", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 user identifier for the person/system making the change.", - "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 change. Also known as the actionDescription.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ClassWord": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "feac4bd9-37d9-4437-82f6-618ce3e2793e", - "name": "ClassWord", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes classifying or grouping noun, using in naming standards.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AuditLogFile": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "109d6d13-a3cf-4687-a0c1-c3802dc6b3a2", - "name": "AuditLogFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A data file containing audit log records.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ObjectIdentifier": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3d1e4389-27de-44fa-8df4-d57bfaf809ea", - "name": "ObjectIdentifier", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary term that describes an attribute that can be used to identify an instance.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ConceptModel": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "7149c2de-5f24-4959-9b24-9d5e67709fac", - "name": "ConceptModel", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies that a design model as a concept model.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "bf17143d-8605-48c2-ba80-64c2ac8f8379", - "name": "DesignModel", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SoftwareLibrary": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "5708fa1a-2b64-4706-8e14-a020e4567db3", - "name": "SoftwareLibrary", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines a collection of software modules. Also known as the definitive software library.", - "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": "libraryType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 library - may be a product name or open source project name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AssetManager": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "03170ce7-edf1-4e94-b6ab-2d5cbbf1f13c", - "name": "AssetManager", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines a capability that manages metadata about assets.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "RepositoryProxy": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "ae81c35e-7078-46f0-9b2c-afc99accf3ec", - "name": "RepositoryProxy", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server acting as an open metadata adapter for a metadata repository.", - "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 repository proxy.", - "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 repository proxy.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "CyberLocation": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "f9ec3633-8ac8-480b-aa6d-5e674b9e1b17", - "name": "CyberLocation", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A digital location.", - "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": "address", - "attributeType": { - "class": "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": "Address of the location (Deprecated).", - "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": "Base network address used to connect to the location's endpoint(s).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "DataMovementEngine": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "d2ed6621-9d99-4fe8-843a-b28d816cf888", - "name": "DataMovementEngine", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An engine capable of copying data from one data store to another.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "name": "Engine", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "CloudTenant": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "1b8f8522-e606-4f65-86d3-84891706ad12", - "name": "CloudTenant", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A software server supporting cloud services.", - "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": "tenantType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 type of tenant.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "tenantName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 tenant.", - "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": "tenantType", - "attributeDescription": "Deprecated attribute. Use the tenantType attribute to describe the type of cloud tenant.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", - "name": "SoftwareServer", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "CloudService": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "337e7b1a-ad4b-4818-aa3e-0ff3307b2fbe", - "name": "CloudService", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A service running on a cloud platform.", - "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": "serviceType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 type of the service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "offeringName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Commercial name of the service.", - "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": "serviceType", - "attributeDescription": "Deprecated attribute. Use the serviceType attribute to describe the type of cloud service.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", - "name": "SoftwareCapability", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ControlPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "acf8b73e-3545-435d-ba16-fbfae060dd28", - "name": "ControlPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A task in a process where a person must make a decision on the right action to take.", - "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", - "name": "int", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Qualified name of the enforcement point definition.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ListenerInterface": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4099d2ed-2a5e-4c44-8443-9de4e378a4ba", - "name": "ListenerInterface", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies an API that listens for incoming events and processes them.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "7dbb3e63-138f-49f1-97b4-66313871fc14", - "name": "DeployedAPI", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SecurityTags": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "a0b07a86-9fd3-40ca-bb9b-fe83c6981deb", - "name": "SecurityTags", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines labels and properties used by a security engine.", - "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": "accessGroups", - "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": "Map of access groups.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "securityProperties", - "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": "Properties that apply to the referenceable.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "securityLabels", - "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": "Labels that apply to the referenceable.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ReferenceData": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "55e5ae33-39c6-4834-9d05-ef0ae4e0163b", - "name": "ReferenceData", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An asset that contains trusted values for use as a reference.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "CalculatedValue": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4814bec8-482d-463d-8376-160b0358e139", - "name": "CalculatedValue", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A field within a schema that is calculated via the formula and query targets rather than stored.", - "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": "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": "Expression to create the value.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ApplicationServer": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "19196efb-2706-47bf-8e51-e8ba5b36d033", - "name": "ApplicationServer", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server that hosts applications.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "PolicyAdministrationPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4f13baa3-31b3-4a85-985e-2abc784900b8", - "name": "PolicyAdministrationPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes the capability where policies are maintained.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "updatedBy": "ODPi 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": "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": "Unique name of the policy administration point.", - "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 policy administration point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "pointType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Descriptive type information about the policy administration point.", - "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": "pointType", - "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy administration point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Task": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "2312b668-3670-4845-a140-ef88d5a6db0c", - "name": "Task", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A self-contained, short activity, typically for one or two people.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "DataValue": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "ab253e31-3d8a-45a7-8592-24329a189b9e", - "name": "DataValue", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies that this glossary term describes a data value.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "CanonicalVocabulary": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "33ad3da2-0910-47be-83f1-daee018a4c05", - "name": "CanonicalVocabulary", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary that contains unique 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": "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 influence for this canonical glossary.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "name": "Glossary", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AuditLog": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "449be034-6cc8-4f1b-859f-a8b9ff8ee7a1", - "name": "AuditLog", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A collection of related audit log records.", - "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": "process", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 automated process that processes this audit log.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Notes on usage, purpose and type of audit log records in the collection.", - "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": "Source of the audit log.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Template": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "25fad4a2-c2d6-440d-a5b1-e537881f84ee", - "name": "Template", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Marks the referenceable as a template for creating new objects.", - "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": "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": "Unique name of the template.", - "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 template and how/where it is used.", - "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 information that is useful to the consumer of the template.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "EnforcementPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "f4ce104e-7430-4c30-863d-60f6af6394d9", - "name": "EnforcementPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A governance rule that ensures a required condition is true.", - "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": "7fc49104-fd3a-46c8-b6bf-f16b6074cd35", - "name": "int", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_INT" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Qualified name of the enforcement point definition.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ContentCollectionManager": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "dbde6a5b-fc89-4b04-969a-9dc09a60ebd7", - "name": "ContentCollectionManager", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a software server capability as a manager of controlled documents and related media.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Confidence": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "25d8f8d5-2998-4983-b9ef-265f58732965", - "name": "Confidence", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines the level of confidence that should be placed in the accuracy of related data items.", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information relating to the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "level", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "ae846797-d88a-4421-ad9a-318bf7c1fe6f", - "name": "ConfidenceLevel", - "description": "Defines the level of confidence to place in the accuracy of a data item.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the confidence level of this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "AdHoc", - "description": "The data comes from an ad hoc process." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Transactional", - "description": "The data comes from a transactional system so it may have a narrow scope." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Authoritative", - "description": "The data comes from an authoritative source." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Derived", - "description": "The data is derived from other data through an analytical process." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The data comes from an obsolete source and must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another confidence level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the confidence level of this data." - } - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "levelIdentifier", - "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the confidence level of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the classification (0=none -> 100=excellent).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "statusIdentifier", - "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", - "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": "Source of the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", - "name": "GovernanceClassificationStatus", - "description": "Defines the status values of a governance action classification.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The classification assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The classification assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The classification assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The classification assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The classification assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The classification assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another classification assignment status." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "statusIdentifier", - "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "levelIdentifier", - "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": "Defined confidence level for this classification. Values defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "CloudProvider": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "a2bfdd08-d0a8-49db-bc97-7f2406281046", - "name": "CloudProvider", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A host supporting cloud services.", - "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": "providerName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 cloud provider.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "1abd16db-5b8a-4fd9-aee5-205db3febe99", - "name": "Host", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "FileSystem": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "cab5ba1d-cfd3-4fca-857d-c07711fc4157", - "name": "FileSystem", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A capability that supports a store of files organized into a hierarchy of file folders.", - "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": "format", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 file system.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "encryption", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Level of encryption used on the filesystem (if any).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "IncidentClassifierSet": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "361158c0-ade1-4c92-a6a7-64f7ac39b87d", - "name": "IncidentClassifierSet", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A collection of incident classifiers.", - "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": "incidentClassifierCategory", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 category of classifiers used to set the incidentClassifiers in IncidentReport.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "DatabaseServer": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "6bb58cc9-ed9e-4f75-b2f2-6d308554eb52", - "name": "DatabaseServer", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Identifies a server as one that manages one or more databases.", - "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": "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": "Source of the database software.", - "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 database server.", - "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": "softwareVersion", - "attributeDescription": "Deprecated attribute. Use the softwareVersion attribute to define the version number of database server software.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "softwareVersion", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 database server software.", - "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 database server.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "Impact": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3a6c4ba7-3cc5-48cd-8952-a50a92da016d", - "name": "Impact", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines the severity of a situation on the attach entity.", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information relating to the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "level", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "5b905856-90ec-4944-80c4-0d42bcad484a", - "name": "ImpactSeverity", - "description": "Defines the severity of the impact that a situation has.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the impact's severity on this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Low", - "description": "The impact is low." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Medium", - "description": "The impact is medium." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "High", - "description": "The impact is high." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another impact level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the impact's severity on this data." - } - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "severityIdentifier", - "attributeDescription": "Deprecated attribute. Use the severityIdentifier attribute to describe the severity level of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the classification (0=none -> 100=excellent).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "statusIdentifier", - "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", - "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": "Source of the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "severityIdentifier", - "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": "Defined level of severity for this classification. Values defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", - "name": "GovernanceClassificationStatus", - "description": "Defines the status values of a governance action classification.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The classification assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The classification assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The classification assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The classification assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The classification assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The classification assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another classification assignment status." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "statusIdentifier", - "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "levelIdentifier", - "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": "severityIdentifier", - "attributeDescription": "Deprecated attribute. Use the severityIdentifier attribute to describe the severity level of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "NotificationManager": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3e7502a7-396a-4737-a106-378c9c94c105", - "name": "NotificationManager", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a server capability that is distributing events from a topic to its subscriber list.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ServerPurpose": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Adds more detail about the purpose of a deployed instance of IT infrastructure.", - "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": "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": [ - "StewardshipServer", - "Webserver", - "RepositoryProxy", - "ApplicationServer", - "DatabaseServer", - "MetadataServer", - "GovernanceDaemon", - "IntegrationServer" - ] - }, - "ExceptionLogFile": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "4756a6da-e0c2-4e81-b9ab-99df2f735eec", - "name": "ExceptionLogFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A data file containing exceptions.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "WorkflowEngine": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "37a6d212-7c4a-4a82-b4e2-601d4358381c", - "name": "WorkflowEngine", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An engine capable of running a mixture of human and automated tasks as part of a workflow process.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "name": "Engine", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "MetadataServer": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "74a256ad-4022-4518-a446-c65fe082d4d3", - "name": "MetadataServer", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server hosting a metadata collection.", - "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": "format", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 supported metadata.", - "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 metadata server.", - "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 server.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "SoftwarePackageManifest": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e328ae6e-0b16-4490-9883-c953b4258841", - "name": "SoftwarePackageManifest", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a collection of software packages.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GlossaryProject": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "43be51a9-2d19-4044-b399-3ba36af10929", - "name": "GlossaryProject", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a project that is defining new glossary terms and categories or maintaining an existing glossary.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "name": "Project", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Campaign": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "41437629-8609-49ef-8930-8c435c912572", - "name": "Campaign", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A long-term strategic initiative that is implemented through multiple related projects.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ConceptBeadAttributeCoverage": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "f8b60afe-ddef-4b6f-9628-82ebfff34d65", - "name": "ConceptBeadAttributeCoverage", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the coverage category of a concept bead attribute.", - "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": "coverageCategory", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "2c0ac237-e02e-431a-89fd-3107d94d4007", - "name": "ConceptModelAttributeCoverageCategory", - "description": "Describes the type of attribute - this is used in scoping the model.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The attribute's coverage category is unknown - this is the default." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "UniqueIdentifier", - "description": "The attribute uniquely identifies the concept bead." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Identifier", - "description": "The attribute is a good indicator of the identity of the concept bead but not guaranteed to be unique." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "CoreDetail", - "description": "The attribute provides information that is typically required by all of the consumers of the concept bead." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "ExtendedDetail", - "description": "The attribute contains supplementary information that is of interest to specific consumers of the concept bead." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The attribute's coverage category is unknown - this is the default." - } - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Type of role that the attribute plays as part of the concept bead.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "d804d406-ac74-4f92-9bde-2ba0793680ea", - "name": "ConceptBeadAttribute", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "MeteringLogFile": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "5ceb0c07-4271-4910-9e24-b0894f395d93", - "name": "MeteringLogFile", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A data file containing resource use events.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "name": "DataFile", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PolicyDecisionPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "bf521975-bfec-4115-a8e3-ed0fee7d4a43", - "name": "PolicyDecisionPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes the capability where policies are evaluated for a specific situation.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "updatedBy": "ODPi 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": "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": "Unique name of the policy decision point.", - "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 policy decision point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "pointType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Descriptive type information about the policy decision point.", - "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": "pointType", - "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy decision point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceDaemon": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "7815f222-529d-4902-8f0b-e37cbc779885", - "name": "GovernanceDaemon", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "A server dedicated to managing activity relating to governance 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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "ProcessingState": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "261fb0aa-b884-4ee8-87ea-a60510e9751d", - "name": "ProcessingState", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Stores processing state information used by various SoftwareCapabilities.", - "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": "syncDatesByKey", - "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": "Collection of synchronization dates identified by a key", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "54055c38-b9ad-4a66-a75b-14dc643d4c69", - "name": "SoftwareCapability", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AnalyticsEngine": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "1a0dc6f6-7980-42f5-98bd-51e56543a07e", - "name": "AnalyticsEngine", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An engine capable of running analytics models using data from one or more 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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "name": "Engine", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ExceptionBacklog": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "b3eceea3-aa02-4d84-8f11-da4953e64b5f", - "name": "ExceptionBacklog", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A collection of exceptions that need to be resolved", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "process", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 automated process that processes this exception backlog.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Notes on usage, purpose and type of exception backlog.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 person or team responsible for this exception backlog.", - "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": "Source of the exception backlog.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "DataVirtualizationEngine": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "03e25cd0-03d7-4d96-b28b-eed671824ed6", - "name": "DataVirtualizationEngine", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An engine capable of creating new data sets by dynamically combining data from one or more data stores or 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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "name": "Engine", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Ownership": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "8139a911-a4bd-432b-a9f4-f6d11c511abe", - "name": "Ownership", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Who is responsible for making decisions on the management and governance of this element.", - "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": "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": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Identifier of the owner.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "ownerTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element that describes the owner.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "ownerPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property from the element used to identify the owner.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "IntegrationServer": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "c165b760-d9ab-47ac-a2ee-7854ec74605a", - "name": "IntegrationServer", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "superType": { - "headerVersion": 1, - "guid": "78f68757-600f-4e8e-843b-00e77cdee37c", - "name": "ServerPurpose", - "status": "ACTIVE_TYPEDEF" - }, - "description": "Identifies a server that exchanges data between between other servers.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "name": "ITInfrastructure", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": [ - { - "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 software deployed - such as product name.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "subTypeNames": null - }, - "ActivityDescription": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "317f0e52-1548-41e6-b90c-6ae5e6c53fed", - "name": "ActivityDescription", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies that this glossary term describes an activity.", - "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": "activityType", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "af7e403d-9865-4ebb-8c1a-1fd57b4f4bca", - "name": "ActivityType", - "description": "Different types of activities.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Operation", - "description": "Normal processing." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Action", - "description": "A requested or required change." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Task", - "description": "A piece of work for a person, organization or engine." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Process", - "description": "A sequence of tasks." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Project", - "description": "An organized activity to achieve a specific goal." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of activity." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Classification of the activity.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PrimeWord": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "3ea1ea66-8923-4662-8628-0bacef3e9c5f", - "name": "PrimeWord", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes a primary noun, used in naming standards.", - "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", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "EditingGlossary": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "173614ba-c582-4ecc-8fcc-cde5fb664548", - "name": "EditingGlossary", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A temporary glossary holding glossary content that is being edited.", - "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": "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 updates.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "name": "Glossary", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AssetZoneMembership": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "a1c17a86-9fd3-40ca-bb9b-fe83c6981deb", - "name": "AssetZoneMembership", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines the asset's membership of the governance zones.", - "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": "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": "ACTIVE_ATTRIBUTE", - "attributeDescription": "List of governance zones for the asset.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "896d14c2-7522-4f6c-8519-757711943fe6", - "name": "Asset", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PrimaryKey": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "b239d832-50bd-471b-b17a-15a335fc7f40", - "name": "PrimaryKey", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A uniquely identifying relational column.", - "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": "keyPattern", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", - "name": "KeyPattern", - "description": "Defines the type of identifier used for an asset.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "LocalKey", - "description": "Unique key allocated and used within the scope of a single system." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "RecycledKey", - "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "NaturalKey", - "description": "Key derived from an attribute of the entity, such as email address, passport number." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "MirrorKey", - "description": "Key value copied from another system." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "AggregateKey", - "description": "Key formed by combining keys from multiple systems." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "CallersKey", - "description": "Key from another system can bey used if system name provided." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "StableKey", - "description": "Key value will remain active even if records are merged." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another key pattern." - } - ] - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Type of primary key.", - "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 primary key.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", - "name": "RelationalColumn", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "AbstractConcept": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "9d725a07-4abf-4939-a268-419d200b69c2", - "name": "AbstractConcept", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies that this glossary term describes an abstract concept.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-01-01T13:42:11.090+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "MetamodelInstance": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "07bd0820-6b14-43b0-a625-2c89f2beb93a", - "name": "MetamodelInstance", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the element from a metadata model that this element embodies.", - "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": "metamodelElementGUID", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Element in the metadata model that the attached element embodies.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "492e343f-2516-43b8-94b0-5bae0760dda6", - "name": "DesignModelElement", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Memento": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "ecdcd472-6701-4303-8dec-267bcb54feb9", - "name": "Memento", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An element whose real-world counterpart has been deleted or moved to offline archived.", - "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": "archiveDate", - "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": "Timestamp when the archive occurred or was detected.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "archiveUser", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 user that performed the archive - or detected the archive.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "archiveProcess", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 process that performed the archive - or detected the archive.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "archiveService", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 service that created this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "archiveMethod", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 method that created this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "archiveProperties", - "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 to locate the real-world counterpart in the archive.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceClassificationSet": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "d92b7f31-c92d-418d-b345-ea45bb3f73f5", - "name": "GovernanceClassificationSet", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the set of levels that are used within a specific governance classification.", - "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 of the governance domain that recognizes this set of levels.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classificationName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 this set of levels is used.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "classificationPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property in the classification where this value is used.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SubjectArea": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "480e6993-35c5-433a-b50b-0f5c4063fb5d", - "name": "SubjectArea", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies an element as part of a subject area definition.", - "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 subject area.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceMeasurementsResultsDataSet": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "789f2e89-accd-4489-8eca-dc43b432c022", - "name": "GovernanceMeasurementsResultsDataSet", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A data file containing measurements for a governance metric.", - "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 use of the data set for governance metrics.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "1449911c-4f44-4c22-abc0-7540154feefb", - "name": "DataSet", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ConsolidatedDuplicate": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e40e80d7-5a29-482c-9a88-0dc7251f08de", - "name": "ConsolidatedDuplicate", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "An element that has be formed by combining the properties, classifications and relationships from multiple duplicate entities.", - "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": "statusIdentifier", - "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": "Status of the consolidated entity. Value defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this consolidated entity.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "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": "Source of the duplicate detection.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information for the steward(s) relating to the survivorship rules and consolidation decisions.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "SecureLocation": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e7b563c0-fcdd-4ba7-a046-eecf5c4638b8", - "name": "SecureLocation", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A location that protects the assets in its care.", - "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 security at this location.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "level", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Level of security at this location.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Modifier": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "f662c95a-ae3f-4f71-b442-78ab70f2ee47", - "name": "Modifier", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes modifying noun or adverb, used in naming standards.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2018-01-18T22:04:00.008+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Incomplete": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "078432fb-a889-4a51-8ebe-9797becea9f1", - "name": "Incomplete", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Accompanies a partial, incomplete Referenceable.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "GovernanceStatusSet": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "c13261bb-0cfe-4540-a44a-cca2b14f412b", - "name": "GovernanceStatusSet", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the set of levels that are used to describe the status of a governance element.", - "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": "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 set of levels.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "name": "Collection", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "CloudPlatform": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "1b8f8511-e606-4f65-86d3-84891706ad12", - "name": "CloudPlatform", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A software server platform supporting cloud services.", - "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 cloud platform.", - "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 cloud platform.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "ba7c7884-32ce-4991-9c41-9778f1fec6aa", - "name": "SoftwareServerPlatform", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "MasterDataManager": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "5bdad12e-57e7-4ff9-b7be-5d869e77d30b", - "name": "MasterDataManager", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A system that manages the consolidation and reconciliation of master data - typically people, organizations, products and accounts.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "UserAccessDirectory": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "29c98cf7-32b3-47d2-a411-48c1c9967e6d", - "name": "UserAccessDirectory", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A system that stores the access rights and groups for users (people and automated processes).", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "InstanceMetadata": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "e6d5c097-a5e9-4bc4-a614-2506276059af", - "name": "InstanceMetadata", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines a data field that contains metadata for the row/record/object.", - "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": "typeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Open metadata type for the instance metadata (if applicable).", - "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 metadata.", - "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 describing properties, valid values or associated processing for this metadata.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "718d4244-8559-49ed-ad5a-10e5c305a656", - "name": "SchemaElement", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "FixedLocation": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "bc111963-80c7-444f-9715-946c03142dd2", - "name": "FixedLocation", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "A location linked to a physical place.", - "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": "address", - "attributeType": { - "class": "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": "Postal address of the location (Deprecated).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "postalAddress", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Postal address of the location.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "mapProjection", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 scheme used to define the meaning of the coordinates.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "timezone", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Timezone for the location.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "coordinates", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Geographical coordinates of this location.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "name": "Location", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "ElementSupplement": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "58520015-ce6e-47b7-a1fd-864030544819", - "name": "ElementSupplement", - "status": "ACTIVE_TYPEDEF", - "version": 1, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies a glossary term that is being used to supplement asset descriptions.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "createTime": "2020-04-30T15:42:46.992+00:00", - "validInstanceStatusList": [ - "ACTIVE", - "DELETED" - ], - "initialStatus": "ACTIVE", - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "name": "GlossaryTerm", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "PolicyInformationPoint": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "2058ab6f-ddbf-45f9-9136-47354544e282", - "name": "PolicyInformationPoint", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Describes the capability where additional information used in a policy decision are stored.", - "origin": "bce3b0a0-662a-4f87-b8dc-844078a11a6e", - "createdBy": "ODPi Egeria", - "updatedBy": "ODPi 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": "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": "Unique name of the policy information point.", - "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 policy information point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "pointType", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Descriptive type information about the policy information point.", - "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": "pointType", - "attributeDescription": "Deprecated attribute. Use the pointType attribute to describe type information about the policy information point.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Anchors": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "aa44f302-2e43-4669-a1e7-edaae414fc6e", - "name": "Anchors", - "status": "ACTIVE_TYPEDEF", - "version": 2, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Identifies the anchor entities for an element that is part of a large composite object such as an asset.", - "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": "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": "ACTIVE_ATTRIBUTE", - "attributeDescription": "The unique identifier of the referenceable that this element is directly or indirectly anchored to.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "name": "OpenMetadataRoot", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": true - }, - "inheritedAttributes": null, - "subTypeNames": null - }, - "Confidentiality": { - "classificationDef": { - "class": "ClassificationDef", - "headerVersion": 1, - "guid": "742ddb7d-9a4a-4eb5-8ac2-1d69953bd2b6", - "name": "Confidentiality", - "status": "ACTIVE_TYPEDEF", - "version": 3, - "versionName": "1.0", - "category": "CLASSIFICATION_DEF", - "description": "Defines the level of confidentiality of related data items.", - "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": "stewardTypeName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 element used to identify the steward.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "notes", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Information relating to the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "steward", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "PRIMITIVE", - "guid": "b34a64b9-554a-42b1-8f8a-7d5c2339f9c4", - "name": "string", - "primitiveDefCategory": "OM_PRIMITIVE_TYPE_STRING" - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Person responsible for maintaining this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "level", - "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": "levelIdentifier", - "attributeDescription": "Deprecated attribute. Use the levelIdentifier attribute to describe the confidentiality level of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidence", - "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 confidence in the classification (0=none -> 100=excellent).", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "statusIdentifier", - "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": "Description of the status of this classification. Values defined by GovernanceStatusLevel.", - "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": "Source of the classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "stewardPropertyName", - "attributeType": { - "class": "PrimitiveDef", - "headerVersion": 1, - "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 property used to identify the steward.", - "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": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", - "name": "GovernanceClassificationStatus", - "description": "Defines the status values of a governance action classification.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The classification assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The classification assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The classification assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The classification assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The classification assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The classification assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another classification assignment status." - } - ] - }, - "attributeStatus": "DEPRECATED_ATTRIBUTE", - "replacedByAttribute": "statusIdentifier", - "attributeDescription": "Deprecated attribute. Use the statusIdentifier attribute to describe the status of this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "levelIdentifier", - "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": "Defined confidentiality level for this classification. Values defined by GovernanceClassificationLevel.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - }, - { - "headerVersion": 1, - "attributeName": "confidentialityLevel", - "attributeType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "abc48ca2-4d29-4de9-99a1-bc4db9816d68", - "name": "ConfidentialityLevel", - "description": "Defines how confidential a data item is.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "The data is public information." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Internal", - "description": "The data should not be exposed outside of this organization." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Confidential", - "description": "The data should be protected and only shared with people with a need to see it." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Sensitive", - "description": "The data is sensitive and inappropriate use may adversely impact the data subject." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Restricted", - "description": "The data is very valuable and must be restricted to a very small number of people." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another confidentially level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "The data is public information." - } - }, - "attributeStatus": "ACTIVE_ATTRIBUTE", - "attributeDescription": "Pre-defined level for this classification.", - "valuesMinCount": 0, - "valuesMaxCount": 1, - "attributeCardinality": "AT_MOST_ONE", - "unique": false, - "indexable": true - } - ], - "validEntityDefs": [ - { - "headerVersion": 1, - "guid": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "name": "Referenceable", - "status": "ACTIVE_TYPEDEF" - } - ], - "propagatable": false - }, - "inheritedAttributes": null, - "subTypeNames": null - } - }, - "enums": { - "MembershipStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a3bdb2ac-c28e-4e5a-8ab7-76aa01038832", - "name": "MembershipStatus", - "description": "Defines the provenance and confidence that a member belongs in a collection.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The membership origin is unknown." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Discovered", - "description": "The membership was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Assigned", - "description": "The membership was proposed by an expert curator." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Imported", - "description": "The membership was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Validated", - "description": "The membership created by an automated process has been validated and approved by an expert curator." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Deprecated", - "description": "The membership should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "Obsolete", - "description": "The membership must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another membership status." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The membership origin is unknown." - } - }, - "BusinessCapabilityType": { - "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." - } - }, - "ToDoStatus": { - "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." - } - ] - }, - "DiscoveryServiceRequestStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "b2fdeddd-24eb-4e9c-a2a4-2693828d4a69", - "name": "DiscoveryServiceRequestStatus", - "description": "Defines the progress or completion of a requested discovery service.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery service is waiting to execute." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Activating", - "description": "Discovery service is being initialized in the discovery engine." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "InProgress", - "description": "Discovery service is executing." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Failed", - "description": "Discovery service has failed." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Completed", - "description": "Discovery service has completed successfully." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Other", - "description": "Discovery service has a status that is not covered by this enum." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Unknown", - "description": "Discovery service status is unknown." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery service is waiting to execute." - } - }, - "GovernanceDomain": { - "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." - } - ] - }, - "DataClassAssignmentStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "2611892f-0527-478f-8843-a3aa2b9abb47", - "name": "DataClassAssignmentStatus", - "description": "Defines the provenance and confidence of a data class assignment.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The data class assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The data class assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The data class assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The data class assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The data class assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The data class assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another data class assignment status." - } - ] - }, - "DiscoveryRequestStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "ecb48ca2-4d29-4de9-99a1-bc4db9816d68", - "name": "DiscoveryRequestStatus", - "description": "Defines the progress or completion of a discovery request.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery request is waiting to execute." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "InProgress", - "description": "Discovery request is executing." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Failed", - "description": "Discovery request has failed." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Completed", - "description": "Discovery request has completed successfully." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Unknown", - "description": "Discovery request status is unknown." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Waiting", - "description": "Discovery request is waiting to execute." - } - }, - "StarRating": { - "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." - } - ] - }, - "ImpactSeverity": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "5b905856-90ec-4944-80c4-0d42bcad484a", - "name": "ImpactSeverity", - "description": "Defines the severity of the impact that a situation has.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the impact's severity on this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Low", - "description": "The impact is low." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Medium", - "description": "The impact is medium." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "High", - "description": "The impact is high." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another impact level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the impact's severity on this data." - } - }, - "Endianness": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "e5612c3a-49bd-4148-8f67-cfdf145d5fd8", - "name": "Endianness", - "description": "Defines the sequential order in which bytes are arranged into larger numerical values when stored in memory or when transmitted over digital links.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "BigEndian", - "description": "Bits or bytes order from the big end." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "LittleEndian", - "description": "Bits or bytes ordered from the little end." - } - ] - }, - "AnnotationStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "71187df6-ef66-4f88-bc03-cd3c7f925165", - "name": "AnnotationStatus", - "description": "Defines the status of an annotation.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "New", - "description": "The annotation is new." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Reviewed", - "description": "The annotation has been reviewed by a steward." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Approved", - "description": "The annotation has been approved." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Actioned", - "description": "The request has been actioned." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Invalid", - "description": "The annotation is invalid or incorrect." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Ignore", - "description": "The annotation should be ignored." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another status." - } - ] - }, - "ServerAssetUseType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "09439481-9489-467c-9ae5-178a6e0b6b5a", - "name": "ServerAssetUseType", - "description": "Defines how a software server capability may use an asset.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Owns", - "description": "The software server capability is accountable for the maintenance and protection of the asset." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Governs", - "description": "The software server capability provides management or oversight of the asset." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Maintains", - "description": "The software server capability keeps the asset up-to-date." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Uses", - "description": "The software server capability consumes the content of the asset." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another usage." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Owns", - "description": "The software server capability is accountable for the maintenance and protection of the asset." - } - }, - "ConfidenceLevel": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "ae846797-d88a-4421-ad9a-318bf7c1fe6f", - "name": "ConfidenceLevel", - "description": "Defines the level of confidence to place in the accuracy of a data item.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the confidence level of this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "AdHoc", - "description": "The data comes from an ad hoc process." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Transactional", - "description": "The data comes from a transactional system so it may have a narrow scope." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Authoritative", - "description": "The data comes from an authoritative source." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Derived", - "description": "The data is derived from other data through an analytical process." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The data comes from an obsolete source and must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another confidence level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the confidence level of this data." - } - }, - "DuplicateType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "2f6a3dc1-aa98-4b92-add4-68de53b7369c", - "name": "DuplicateType", - "description": "Defines if the duplicates are peers or one is a consolidated duplicate.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Peer", - "description": "The duplicates are peers." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Consolidated", - "description": "One duplicate has been constructed from the other (ands its peers)." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another duplicate type." - } - ] - }, - "OwnerType": { - "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." - } - ] - }, - "KeyPattern": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "8904df8f-1aca-4de8-9abd-1ef2aadba300", - "name": "KeyPattern", - "description": "Defines the type of identifier used for an asset.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "LocalKey", - "description": "Unique key allocated and used within the scope of a single system." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "RecycledKey", - "description": "Key allocated and used within the scope of a single system that is periodically reused for different records." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "NaturalKey", - "description": "Key derived from an attribute of the entity, such as email address, passport number." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "MirrorKey", - "description": "Key value copied from another system." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "AggregateKey", - "description": "Key formed by combining keys from multiple systems." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "CallersKey", - "description": "Key from another system can bey used if system name provided." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "StableKey", - "description": "Key value will remain active even if records are merged." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another key pattern." - } - ] - }, - "CommentType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "06d5032e-192a-4f77-ade1-a4b97926e867", - "name": "CommentType", - "description": "Descriptor for a comment that indicated its intent.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "GeneralComment", - "description": "General comment." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Question", - "description": "A question." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Answer", - "description": "An answer to a previously asked question." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Suggestion", - "description": "A suggestion for improvement." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Experience", - "description": "An account of an experience." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "None of the above." - } - ] - }, - "SolutionPortDirection": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "4879c96e-26c7-48af-ba92-8277632be733", - "name": "SolutionPortDirection", - "description": "Defines the direction of flow of information through a solution port.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The direction of flow is unknown." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Output", - "description": "The process is producing information through this port." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Input", - "description": "The process is consuming information through this port." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "InOut", - "description": "The process has a call interface attached to this port." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "OutIn", - "description": "The process is issuing a call to an external API through this port." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another direction." - } - ] - }, - "MediaType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "9548390c-69f5-4dc6-950d-6fdffb257b56", - "name": "MediaType", - "description": "Defines the type of media.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Image", - "description": "The media is an image." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Audio", - "description": "The media is an audio recording." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Document", - "description": "The media is a text document, probably rich text." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Video", - "description": "The media is a video recording." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of media, probably not supported." - } - ] - }, - "MediaUsage": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "c6861a72-7485-48c9-8040-876f6c342b61", - "name": "MediaUsage", - "description": "Defines how a related media reference should be used.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Icon", - "description": "Provides a small image to represent the asset in tree views and graphs." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Thumbnail", - "description": "Provides a small image about the asset that can be used in lists." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Illustration", - "description": "Illustrates how the asset works or what it contains. It is complementary to the asset's description." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "UsageGuidance", - "description": "Provides guidance to a person on how to use the asset." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another usage." - } - ] - }, - "RetentionBasis": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "de79bf78-ecb0-4fd0-978f-ecc2cb4ff6c7", - "name": "RetentionBasis", - "description": "Defines the retention requirements associated with a data item.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the retention requirements for this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Temporary", - "description": "This data is temporary." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "ProjectLifetime", - "description": "The data is needed for the lifetime of the referenced project." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "TeamLifetime", - "description": "The data is needed for the lifetime of the referenced team." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "ContractLifetime", - "description": "The data is needed for the lifetime of the referenced contract." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "RegulatedLifetime", - "description": "The retention period for the data is defined by the referenced regulation." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "TimeBoxedLifetime", - "description": "The data is needed for the specified time." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another basis for determining the retention requirement." - } - ] - }, - "DataItemSortOrder": { - "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." - } - ] - }, - "GovernanceClassificationStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "cc540586-ac7c-41ba-8cc1-4da694a6a8e4", - "name": "GovernanceClassificationStatus", - "description": "Defines the status values of a governance action classification.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The classification assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The classification assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The classification assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The classification assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The classification assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The classification assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another classification assignment status." - } - ] - }, - "ProcessContainmentType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "1bb4b908-7983-4802-a2b5-91b095552ee9", - "name": "ProcessContainmentType", - "description": "The containment relationship between two processes.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "OWNED", - "description": "The parent process owns the child process in the relationship, such that if the parent is removed the child should also be removed. A child can have at most one such parent." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "USED", - "description": "The child process is simply used by the parent. A child process can have many such relationships to parents." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "OTHER", - "description": "None of the above." - } - ] - }, - "PermittedSynchronization": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "973a9f4c-93fa-43a5-a0c5-d97dbd164e78", - "name": "PermittedSynchronization", - "description": "Defines the synchronization rules between a third party technology and open metadata.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "BothDirections", - "description": "Metadata exchange is permitted in both directions." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "ToThirdParty", - "description": "The third party technology is logically downstream of open metadata and is just receiving metadata." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "FromThirdParty", - "description": "The third party technology is logically upstream and is publishing metadata to open metadata." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another synchronization rule." - } - ] - }, - "OrderBy": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "1d412439-4272-4a7e-a940-1065f889fc56", - "name": "OrderBy", - "description": "Defines the sequencing for a collection.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Name", - "description": "Order by name property." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Owner", - "description": "Order by owner property." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "DateAdded", - "description": "Order by date added to the metadata collection." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "DateUpdated", - "description": "Order by date that the asset was updated." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "DateCreated", - "description": "Order by date that the asset was created." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Order by another property." - } - ] - }, - "LatestChangeTarget": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a0b7d7a0-4af5-4539-9b81-cbef52d8cc5d", - "name": "LatestChangeTarget", - "description": "Defines the type of repository element that has changed.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "EntityStatus", - "description": "The status of the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "EntityProperty", - "description": "A property in the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "EntityClassification", - "description": "A classification attached to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "EntityRelationship", - "description": "A relationship linking the anchor entity to an attachment has changed." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Attachment", - "description": "An entity attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "AttachmentStatus", - "description": "The status of an entity attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 6, - "value": "AttachmentProperty", - "description": "A property in an entity attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 7, - "value": "AttachmentClassification", - "description": "A classification attached to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 8, - "value": "AttachmentRelationship", - "description": "A relationship linking to an entity that is, in turn, attached either directly or indirectly to the anchor entity has changed." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of change." - } - ] - }, - "CommunityMembershipType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "b0ef45bf-d12b-4b6f-add6-59c14648d750", - "name": "CommunityMembershipType", - "description": "Type of membership to a community.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Contributor", - "description": "Participant in the community." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Administrator", - "description": "Administrator of the community." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Leader", - "description": "Leader of the community." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Observer", - "description": "Observer of the community." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another role in the community." - } - ] - }, - "AssetOwnerType": { - "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." - } - ] - }, - "TermRelationshipStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "42282652-7d60-435e-ad3e-7cfe5291bcc7", - "name": "TermRelationshipStatus", - "description": "Defines the confidence in the assigned relationship.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Draft", - "description": "The term relationship is in development." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Active", - "description": "The term relationship is approved and in use." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deprecated", - "description": "The term relationship should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Obsolete", - "description": "The term relationship must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term relationship status." - } - ] - }, - "ActivityType": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "af7e403d-9865-4ebb-8c1a-1fd57b4f4bca", - "name": "ActivityType", - "description": "Different types of activities.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Operation", - "description": "Normal processing." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Action", - "description": "A requested or required change." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Task", - "description": "A piece of work for a person, organization or engine." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Process", - "description": "A sequence of tasks." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Project", - "description": "An organized activity to achieve a specific goal." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of activity." - } - ] - }, - "ConfidentialityLevel": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "abc48ca2-4d29-4de9-99a1-bc4db9816d68", - "name": "ConfidentialityLevel", - "description": "Defines how confidential a data item is.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "The data is public information." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Internal", - "description": "The data should not be exposed outside of this organization." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Confidential", - "description": "The data should be protected and only shared with people with a need to see it." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Sensitive", - "description": "The data is sensitive and inappropriate use may adversely impact the data subject." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Restricted", - "description": "The data is very valuable and must be restricted to a very small number of people." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another confidentially level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "The data is public information." - } - }, - "TermAssignmentStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "c8fe36ac-369f-4799-af75-46b9c1343ab3", - "name": "TermAssignmentStatus", - "description": "Defines the provenance and confidence of a term assignment.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Discovered", - "description": "The term assignment was discovered by an automated process." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Proposed", - "description": "The term assignment was proposed by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Imported", - "description": "The term assignment was imported from another metadata system." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Validated", - "description": "The term assignment has been validated and approved by a subject matter expert." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Deprecated", - "description": "The term assignment should no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 5, - "value": "Obsolete", - "description": "The term assignment must no longer be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another term assignment status." - } - ] - }, - "OperationalStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "24e1e33e-9250-4a6c-8b07-05c7adec3a1d", - "name": "OperationalStatus", - "description": "Defines whether a component is operational.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Disabled", - "description": "The component is not operational." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Enabled", - "description": "The component is operational." - } - ] - }, - "ConceptModelDecoration": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a97d9167-7dd6-4dea-a8cf-c73c57a0f470", - "name": "ConceptModelDecoration", - "description": "Describes the type of relationship end.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "None", - "description": "The relationship links two concept beads together." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Aggregation", - "description": "The relationship links an independent concept bead to a collection concept bead." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Composition", - "description": "The relationship links a sub-part to a composite." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Extension", - "description": "The relationship links an extension to a base concept bead." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "None", - "description": "The relationship links two concept beads together." - } - }, - "CrowdSourcingRole": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "0ded50c2-17cc-4ecf-915e-908e66dbb27f", - "name": "CrowdSourcingRole", - "description": "Type of contributor to new information and/or assets.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Proposer", - "description": "Actor that creates the initial version." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Reviewer", - "description": "Actor that provided feedback." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Supporter", - "description": "Actor that agrees with the definition." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Approver", - "description": "Actor that declares the definition should be used." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another role." - } - ] - }, - "ConceptModelAttributeCoverageCategory": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "2c0ac237-e02e-431a-89fd-3107d94d4007", - "name": "ConceptModelAttributeCoverageCategory", - "description": "Describes the type of attribute - this is used in scoping the model.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The attribute's coverage category is unknown - this is the default." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "UniqueIdentifier", - "description": "The attribute uniquely identifies the concept bead." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Identifier", - "description": "The attribute is a good indicator of the identity of the concept bead but not guaranteed to be unique." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "CoreDetail", - "description": "The attribute provides information that is typically required by all of the consumers of the concept bead." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "ExtendedDetail", - "description": "The attribute contains supplementary information that is of interest to specific consumers of the concept bead." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unknown", - "description": "The attribute's coverage category is unknown - this is the default." - } - }, - "GovernanceActionStatus": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "a6e698b0-a4f7-4a39-8c80-db0bb0f972ec", - "name": "GovernanceActionStatus", - "description": "Defines the current execution status of a governance action.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Requested", - "description": "The governance action has been created and is pending." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Approved", - "description": "The governance action is approved to run." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Waiting", - "description": "The governance action is waiting for its start time or the right conditions to run." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Activating", - "description": "The governance service for the governance action is being initialized in the governance engine." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "InProgress", - "description": "The governance engine is running the associated governance service for the governance action." - }, - { - "headerVersion": 1, - "ordinal": 10, - "value": "Actioned", - "description": "The governance service for the governance action has successfully completed processing." - }, - { - "headerVersion": 1, - "ordinal": 11, - "value": "Invalid", - "description": "The governance action has not been run because it is not appropriate (for example, a false positive)." - }, - { - "headerVersion": 1, - "ordinal": 12, - "value": "Ignored", - "description": "The governance action has not been run because a different governance action was chosen." - }, - { - "headerVersion": 1, - "ordinal": 13, - "value": "Failed", - "description": "The governance service for the governance action failed to execute." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Undefined or unknown governance action status." - } - ] - }, - "ContactMethodType": { - "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." - } - ] - }, - "CriticalityLevel": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "22bcbf49-83e1-4432-b008-e09a8f842a1e", - "name": "CriticalityLevel", - "description": "Defines how important a data item is to the organization.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the criticality of this data." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Marginal", - "description": "The data is of minor importance to the organization." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Important", - "description": "The data is important to the running of the organization." - }, - { - "headerVersion": 1, - "ordinal": 3, - "value": "Critical", - "description": "The data is critical to the operation of the organization." - }, - { - "headerVersion": 1, - "ordinal": 4, - "value": "Catastrophic", - "description": "The data is so important that its loss is catastrophic putting the future of the organization in doubt." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another criticality level." - } - ], - "defaultValue": { - "headerVersion": 1, - "ordinal": 0, - "value": "Unclassified", - "description": "There is no assessment of the criticality of this data." - } - }, - "LatestChangeAction": { - "class": "EnumDef", - "headerVersion": 1, - "version": 1, - "versionName": "1.0", - "category": "ENUM_DEF", - "guid": "032d844b-868f-4c4a-bc5d-81f0f9704c4d", - "name": "LatestChangeAction", - "description": "Defines the type of change that was made to a repository instance.", - "elementDefs": [ - { - "headerVersion": 1, - "ordinal": 0, - "value": "Created", - "description": "The target element has been created." - }, - { - "headerVersion": 1, - "ordinal": 1, - "value": "Updated", - "description": "The properties of the target element have been changed." - }, - { - "headerVersion": 1, - "ordinal": 2, - "value": "Deleted", - "description": "The target element has been deleted." - }, - { - "headerVersion": 1, - "ordinal": 99, - "value": "Other", - "description": "Another type of action." - } - ] - }, - "IncidentReportStatus": { - "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." - } - ] - }, - "PortType": { - "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." - } - ] - } - }, - "entityTypeGUIDToName": { - "6403a704-aad6-41c2-8e08-b9525c006f85": "PropertyFacet", - "251e443c-dee0-47fa-8a73-1a9d511915a0": "DivergentDuplicateAnnotation", - "27891e52-1255-4a33-98a2-377717a25334": "MetadataRepositoryService", - "b2605d2d-10cd-443c-b3e8-abf15fb051f0": "SetSchemaType", - "0b494819-28be-4604-b238-3af20963eea6": "SemanticAnnotation", - "fbe95779-1f3c-4ac6-aa9d-24963ff16282": "UserIdentity", - "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3": "NoteEntry", - "2df2069f-6475-400c-bf8c-6d2072a55d47": "SecurityService", - "759da11b-ebb6-4382-bdc9-72adc7c922db": "IntegrationConnector", - "a32316b8-dc8c-48c5-b12b-71c1b2a080bf": "Referenceable", - "a2a5cb74-f8e0-470f-be71-26b7e32166a6": "DivergentAttachmentClassificationAnnotation", - "962de053-ab51-40eb-b843-85b98013f5ca": "DataFileCollection", - "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C": "Port", - "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c": "KubernetesCluster", - "fa6de61d-98cb-48c4-b21f-ab7186235fd4": "InformationSupplyChain", - "9062df4c-9f4a-4012-a67a-968d7a3f4bcf": "DataProcessingPurpose", - "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0": "ExternalId", - "b463827c-c0a0-4cfb-a2b2-ddc63746ded4": "Document", - "e0430f59-f021-411a-9d81-883e1ff3f6f6": "Network", - "17bee904-5b35-4c81-ac63-871c615424a2": "KeystoreFile", - "f703a621-4078-4c07-ab22-e7c334b94235": "SuspectDuplicateAnnotation", - "fe30a033-8f86-4d17-8986-e6166fa24177": "SoftwareServerCapability", - "0921c83f-b2db-4086-a52c-0d10e52ca078": "Database", - "a13b409f-fd67-4506-8d94-14dfafd250a4": "StructSchemaType", - "88886b53-c839-48fa-bcfa-83ebcf8abbb5": "Agreement", - "d28c3839-bc6f-41ad-a882-5667e01fea72": "SubjectAreaDefinition", - "69055d10-51dc-4c2b-b21f-d76fad3f8ef3": "GovernanceProcedure", - "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2": "DivergentAttachmentValueAnnotation", - "042d9b5c-677e-477b-811f-1c39bf716759": "SecurityGroup", - "72e6473d-4ce0-4609-80a4-e6e949a7f520": "QualityAnnotation", - "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893": "MetadataRepositoryCohort", - "49990755-2faa-4a62-a1f3-9124b9c73df4": "ImplementationSnippet", - "4d7c43ec-983b-40e4-af78-6fb66c4f5136": "IntegrationGroup", - "69836cfd-39b8-460b-8727-b04e19210069": "DataItemOwner", - "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee": "GovernanceRole", - "b46cddb3-9864-4c5d-8a49-266b3fc95cb8": "APISchemaType", - "f96b5a32-42c1-4a74-8f77-70a81cec783d": "ProjectCharter", - "0c8a3673-04ef-406f-899d-e88de67f6176": "DataClassAnnotation", - "42cfccbf-cc68-4980-8c31-0faf1ee002d3": "SimpleDocumentType", - "b5cefb7e-b198-485f-a1d7-8e661012499b": "DocumentSchemaAttribute", - "68d7b905-6438-43be-88cf-5de027b4aaaf": "InformationView", - "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5": "BusinessOwner", - "786a6199-0ce8-47bf-b006-9ace1c5510e4": "ComplexSchemaType", - "4e7761e8-3969-4627-8f40-bfe3cde85a1d": "OpenMetadataRoot", - "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9": "GovernanceActionService", - "046a049d-5f80-4e5b-b0ae-f3cf6009b513": "LicenseType", - "248975ec-8019-4b8a-9caf-084c8b724233": "TabularSchemaType", - "114e9f8f-5ff3-4c32-bd37-a7eb42712253": "Connection", - "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3": "GovernanceControl", - "af6265e7-5f58-4a9c-9ae7-8d4284be62bd": "TabularFileColumn", - "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1": "InformationSupplyChainSegment", - "740f07dc-4ee8-4c2a-baba-efb55c73eb68": "RelationshipAdviceAnnotation", - "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced": "SchemaAnalysisAnnotation", - "3437fd1d-5098-426c-9b55-c94d1fc5dc0e": "LocationOwner", - "290a192b-42a7-449a-935a-269ca62cfdac": "GovernanceZone", - "27db26a1-ff66-4042-9932-ddc728b977b9": "VerificationPointDefinition", - "685f91fb-c74b-437b-a9b6-c5e557c6d3b2": "DataProcessingDescription", - "ba167b12-969f-49d3-8bea-d04228d9a44b": "APIParameterList", - "8145967e-bb83-44b2-bc8c-68112c6a5a06": "EmbeddedProcess", - "e507485b-9b5a-44c9-8a28-6967f7ff3672": "GlossaryCategory", - "829a648d-f249-455d-8127-aeafa021f832": "RegulationArticle", - "5be4ee8f-4d0c-45cd-a411-22a468950342": "EventSchemaAttribute", - "ac406bf8-e53e-49f1-9088-2af28bcbd285": "PersonRole", - "6bc727dc-e855-4979-8736-78ac3cfcd32f": "DataClass", - "f1c0af19-2729-4fac-996e-a7badff3c21c": "APIOperation", - "896d14c2-7522-4f6c-8519-757711943fe6": "Asset", - "09b2133a-f045-42cc-bb00-ee602b74c618": "ValidValueDefinition", - "92e20083-0393-40c0-a95b-090724a91ddc": "GovernanceActionType", - "9794f42f-4c9f-4fe6-be84-261f0a7de890": "HostCluster", - "f3f69251-adb1-4042-9d95-70082f95a028": "SoftwareService", - "2f278dfc-4640-4714-b34b-303e84e4fc40": "OpenDiscoveryService", - "e3c4293d-8846-4500-b0c0-197d73aba8b0": "Regulation", - "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9": "DatabaseManager", - "e6c049e2-56aa-4512-a634-20cd7085e534": "ArchiveService", - "6046bdf8-a37e-4bc4-b51d-325d8c31a96c": "GovernanceRepresentative", - "deaa5ca0-47a0-483d-b943-d91c76744e01": "Like", - "37156790-feac-4e1a-a42e-88858ae6f8e1": "DocumentStore", - "c85bea73-d7af-46d7-8a7e-cb745910b1df": "DataSourceMeasurementAnnotation", - "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea": "DataField", - "ba846a7b-2955-40bf-952b-2793ceca090a": "InformalTag", - "be650674-790b-487a-a619-0a9002488055": "OpenDiscoveryEngine", - "5caf954a-3e33-4cbd-b17d-8b8613bd2db8": "SchemaTypeChoice", - "82efa1fa-501f-4ac7-942c-6536c4a1cd61": "DataManager", - "36db26d5-aba2-439b-bc15-d62d373c5db6": "Team", - "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1": "GraphEdge", - "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3": "CrowdSourcingContributor", - "22c4e433-1b87-4446-840a-03f83d2dc113": "ServiceLevelObjective", - "6dfba6ce-e925-4281-880d-d04100c5b991": "DigitalServiceManager", - "36f66863-9726-4b41-97ee-714fd0dc6fe4": "Glossary", - "bb094b5e-0934-4d8b-8727-48eb5d241a46": "BusinessImperative", - "ea3b15af-ed0e-44f7-91e4-bdb299dd4976": "MetadataCollection", - "bead9aa4-214a-4596-8036-aa78395bbfb1": "EventSet", - "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea": "GovernanceProcess", - "a376a993-5f1c-4926-b74e-a15a38e1d55a": "ControlPointDefinition", - "fb60761f-7afd-4d3d-9efa-24bc85a7b22e": "ConnectorCategory", - "c403c109-7b6b-48cd-8eee-df445b258b33": "GovernanceDriver", - "20c45531-5d2e-4eb6-9a47-035cb1067b82": "TableDataSet", - "f7feb509-bce6-4989-a340-5dc7e3eec313": "ConceptBead", - "4aa47799-5128-4eeb-bd72-e357b49f8bfe": "SolutionBlueprint", - "201f48c5-4e4b-41dc-9c5f-0bc9742190cf": "ReferenceCodeTable", - "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9": "MetadataRepository", - "486af62c-dcfd-4859-ab24-eab2e380ecfd": "DeployedSoftwareComponent", - "81394f85-6008-465b-926e-b3fae4668937": "ITProfile", - "bff1f694-afd0-4829-ab11-50a9fbaf2f5f": "DataProfileAnnotation", - "2b3bed05-c227-47d7-87a3-139ab0568361": "RepositoryGovernanceEngine", - "3b7d1325-ec2c-44cb-8db0-ce207beb78cf": "GovernancePrinciple", - "77133161-37a9-43f5-aaa3-fd6d7ff92fdb": "BoundedSchemaType", - "50a61105-35be-4ee3-8b99-bdd958ed0685": "Organization", - "7f53928f-9148-4710-ad37-47633f33cb08": "DataProcessingAction", - "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15": "BusinessCapability", - "16d2c34a-43db-476b-93ae-6a2996f514ec": "Actor", - "578a3500-9ad3-45fe-8ada-e4e9572c37c8": "GovernanceDefinition", - "4d3a2b8d-9e2e-4832-b338-21c74e45b238": "GovernanceActionProcess", - "d8f33bd7-afa9-4a11-a8c7-07dcec83c050": "Process", - "5d74250a-57ca-4197-9475-8911f620a94e": "GovernanceActionEngine", - "13defd95-6452-4398-8382-e47f1a271eff": "ConceptBeadLink", - "2ccb2117-9cee-47ca-8150-9b3a543adcec": "CSVFile", - "14145458-f0d0-4955-8899-b8a2874708c9": "StorageVolume", - "718d4244-8559-49ed-ad5a-10e5c305a656": "SchemaElement", - "c5ce5499-9582-42ea-936c-9771fbd475f8": "MediaFile", - "92f7fe27-cd2f-441c-a084-156821aa5bca": "MetadataIntegrationService", - "b55c2740-2d41-4433-a099-596c8e9b7bf6": "QueryDataContainer", - "d804d406-ac74-4f92-9bde-2ba0793680ea": "ConceptBeadAttribute", - "f4fffcc0-d9eb-4bb9-8aff-0718932f689e": "Catalog", - "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e": "IncidentReport", - "bd96a997-8d78-42f6-adf7-8239bc98501c": "OperatingPlatform", - "b86cdded-1078-4e42-b6ba-a718c2c67f62": "DivergentValueAnnotation", - "baa608fa-510e-42d7-95cd-7c12fa37bb35": "JSONFile", - "9882b8aa-eba3-4a30-94c6-43117efd11cc": "DockerContainer", - "52505b06-98a5-481f-8a32-db9b02afabfc": "NamingStandardRule", - "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf": "GovernanceStrategy", - "97f9ffc9-e2f7-4557-ac12-925257345eea": "CertificationType", - "788957f7-a203-45bd-994d-0ab018275821": "DesignModelScope", - "183d2935-a950-4d74-b246-eac3664b5a9d": "ExternalGlossaryLink", - "747f8b86-fe7c-4c9b-ba75-979e093cc307": "RelatedMedia", - "ff4c8484-9127-464a-97fc-99579d5bc429": "LogFile", - "29100f49-338e-4361-b05d-7e4e8e818325": "Topic", - "081abe00-740e-4143-b0d5-a1f55450fc22": "OpenDiscoveryPipeline", - "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E": "PortImplementation", - "aa7c7884-32ce-4991-9c41-9778f1fec6aa": "SoftwareServer", - "578a3510-9ad3-45fe-8ada-e4e9572c37c8": "GovernanceOfficer", - "d81a0425-4e9b-4f31-bc1c-e18c3566da10": "TabularColumn", - "309dfc3c-663b-4732-957b-e4a084436314": "EventBroker", - "b893d6fc-642a-454b-beaf-809ee4dd876a": "AnnotationReview", - "8ef355d4-5cd7-4038-8337-62671b088920": "BareMetalComputer", - "a7defa41-9cfa-4be5-9059-359022bb016d": "GovernancePolicy", - "c19746ac-b3ec-49ce-af4b-83348fc55e07": "Infrastructure", - "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70": "CohortRegistryStore", - "e87ff806-bb9c-4c5d-8106-f38f2dd21037": "EnforcementPointDefinition", - "978e7674-8231-4158-a4e3-a5ccdbcad60e": "RepositoryGovernanceService", - "1a5e159b-913a-43b1-95fe-04433b25fca9": "SchemaAttribute", - "a9f7d15d-b797-450a-8d56-1ba55490c019": "DerivedRelationalColumn", - "9bbae94d-e109-4c96-b072-4f97123f04fd": "NetworkGateway", - "5b7f340e-7dc9-45c0-a636-c20605147c94": "ApplicationService", - "520ebb91-c4eb-4d46-a3b1-974875cdcf0d": "LiteralSchemaType", - "f0438d80-6eb9-4fac-bcc1-5efee5babcfc": "RelationalColumnType", - "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23": "DataSourcePhysicalStatusAnnotation", - "bd4c85d0-d471-4cd2-a193-33b0387a19fd": "MapSchemaType", - "10277b13-509c-480e-9829-bc16d0eafc53": "APIParameter", - "bf17143d-8605-48c2-ba80-64c2ac8f8379": "DesignModel", - "acc7cbc8-09c3-472b-87dd-f78459323dcb": "OpenDiscoveryAnalysisReport", - "f53bd594-5f75-4cf9-9f77-f5c35396590e": "SecurityAccessControl", - "0eb92215-52b1-4fac-92e7-ff02ff385a68": "QueryDataField", - "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5": "PortAlias", - "f45765a9-f3ae-4686-983f-602c348e020d": "RequestForAction", - "151e6dd1-54a0-4b7f-a072-85caa09d1dda": "ITInfrastructure", - "773298be-68ab-4b99-99ab-19eaa886261e": "ArchiveEngine", - "ac406bf8-e53e-49f1-9088-2af28eeee285": "AssetOwner", - "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e": "SearchKeyword", - "3566527f-b1bd-4e7a-873e-a3e04d5f2a14": "Engine", - "ed53a480-e6d4-44f1-aac7-3fac60bbb00e": "DeployedReportType", - "f2a4ff99-1954-48c0-8081-92d1a4dfd910": "DisplayDataContainer", - "cf21abfe-655a-47ba-b9b6-f73394745c80": "DerivedSchemaAttribute", - "191d870c-26f4-4310-a021-b8ca8772719d": "GovernanceService", - "5613677a-865f-474e-8044-4167fa5a31b9": "DivergentAttachmentRelationshipAnnotation", - "86de3633-eec8-4bf9-aad1-e92df1ca2024": "GraphStore", - "42063797-a78a-4720-9353-52026c75f667": "CohortMember", - "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9": "RelationalColumn", - "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d": "ExecutionPointDefinition", - "67228a7a-9d8d-4fa7-b217-17474f1f4ac6": "SetDocumentType", - "0cec20d3-aa29-41b7-96ea-1c544ed32537": "GovernanceObligation", - "b8703d3f-8668-4e6a-bf26-27db1607220d": "IntegrationReport", - "36db26d5-abb2-439b-bc15-d62d373c5db6": "TeamLeader", - "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50": "RootSchemaType", - "23e8287f-5c7e-4e03-8bd3-471fc7fc029c": "ClassificationAnnotation", - "62ef448c-d4c1-4c94-a565-5e5625f6a57b": "SolutionPort", - "a7392281-348d-48a4-bad7-f9742d7696fe": "TabularColumnType", - "ddd29c67-db9a-45ff-92aa-6d17a12a8ee2": "ArrayDocumentType", - "75293260-3373-4777-af7d-7274d5c0b9a5": "AvroFile", - "9f1fb984-db15-43ee-85fb-f8b0353bfb8b": "DataFolder", - "97cba3a0-1dfd-4129-82b6-798de3eec0a4": "ParquetFile", - "ccb408c0-582e-4a3a-a926-7082d53bb669": "ObjectAttribute", - "f6245c25-8f73-45eb-8fb5-fa17a5f27649": "StructDocumentType", - "72ed6de6-79d9-4e7d-aefc-b969382fc4b0": "DataFieldAnnotation", - "2ddc42d3-7791-4b4e-a064-91df9300290a": "TermsAndConditions", - "abc27cf7-e526-4d1b-9c25-7dd60a7993e4": "HadoopCluster", - "b144ee2a-fa71-4897-b51a-dd5239c26910": "DesignModelGroup", - "1449911c-4f44-4c22-abc0-7540154feefb": "DataSet", - "0799569f-0c16-4a1f-86d9-e2e89568f7fd": "Project", - "b83f3d42-f3f7-4155-ae65-58fb44ea7644": "SolutionComponent", - "b0f09598-ceb6-415b-befc-563ecadd5727": "MapDocumentType", - "ba8d29d2-a8a4-41f3-b29f-91ad924dd944": "ArraySchemaType", - "f671e1fc-b204-4ee6-a4e2-da1633ecf50e": "DigitalService", - "368e6fb3-7323-4f81-a723-5182491594bd": "DataProfileLogAnnotation", - "77ccda3d-c4c6-464c-a424-4b2cb27ac06c": "EventTypeList", - "7de10805-7c44-40e3-a410-ffc51306801b": "ValidValuesSet", - "d7df0579-8671-48f0-a8aa-38a487d418c8": "TranslationDetail", - "ba3c8dfa-42a5-492c-bebc-88fa7492e75a": "LastAttachment", - "4ca51fdf-9b70-46b1-bdf6-8860429e78d8": "Threat", - "c6fe40af-cdd6-4ca7-98c4-353d2612921f": "SubjectAreaOwner", - "6bf90c79-32f4-47ad-959c-8fff723fe744": "Meeting", - "49dd320b-4850-4838-9b78-f1285f0e6d2f": "GovernanceConfidentialityLevel", - "0bc3a16a-e8ed-4ad0-a302-0773365fdef0": "MetadataAccessService", - "0798569f-0c16-4a1f-86d9-e2e89568f7fd": "ProjectManager", - "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98": "RelationalTableType", - "90880f0b-c7a3-4d1d-93cc-0b877f27cd33": "EngineHostingService", - "3fa23d4a-aceb-422f-9301-04ed474c6f74": "GovernanceEngine", - "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35": "ActorProfile", - "e87836ad-f8bd-4c52-aecd-0f1872c692e5": "DataFeed", - "c976d88a-2b11-4b40-b972-c38d41bfc6be": "GovernanceAction", - "93dbc58d-c826-4bc2-b36f-195148d46f86": "ToDo", - "befa1458-79b8-446a-b813-536700e60fa8": "OrganizationalControl", - "9ada8e7b-823c-40f7-adf8-f164aabda77e": "GovernanceMetric", - "954421eb-33a6-462d-a8ca-b5709a1bd0d4": "ConnectorType", - "6920fda1-7c07-47c7-84f1-9fb044ae153e": "ObjectSchemaType", - "084cd115-5d0d-4f12-8093-697526a120ea": "GovernanceDomainDescription", - "b3adca2a-ce66-4b29-bf2e-7406ada8ab49": "FingerprintAnnotation", - "fbd42379-f6c3-4f08-b6f7-378565cda993": "Community", - "ba7c7884-32ce-4991-9c41-9778f1fec6aa": "SoftwareServerPlatform", - "3e09cb2b-5f15-4fd2-b004-fe0146ad8628": "Location", - "e2393236-100f-4ac0-a5e6-ce4e96c521e7": "VirtualContainer", - "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3": "DivergentRelationshipAnnotation", - "8f954380-12ce-4a2d-97c6-9ebe250fecf8": "GovernanceRule", - "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3": "DeployedReport", - "ba70f506-1f81-4890-bb4f-1cb1d99c939e": "NamingStandardRuleSet", - "229ed5cc-de31-45fc-beb4-9919fd247398": "FileFolder", - "9bd9d37a-b2ae-48ec-9776-080f667e91c5": "TransientEmbeddedProcess", - "1a226073-9c84-40e4-a422-fbddb9b84278": "Comment", - "30756d0b-362b-4bfa-a0de-fce6a8f47b47": "DataStore", - "fbd42379-f6c3-4f09-b6f7-378565cda993": "CommunityMember", - "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9": "QuerySchemaType", - "9c6ec0c6-0b26-4414-bffe-089144323213": "ReferenceCodeMappingTable", - "8efd6257-a53e-451d-abfc-8e4899c38b1f": "DivergentClassificationAnnotation", - "69751093-35f9-42b1-944b-ba6251ff513d": "SubscriberList", - "33da99cd-8d04-490c-9457-c58908da7794": "DocumentSchemaType", - "8af91d61-2ae8-4255-992e-14d7f745a556": "GovernanceClassificationLevel", - "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a": "GlossaryTerm", - "f0f75fba-9136-4082-8352-0ad74f3c36ed": "PrimitiveSchemaType", - "ac406bf8-e53e-49f1-9088-2af28bbbd285": "Person", - "1f83fc7c-75bb-491d-980d-ff9a6f80ae02": "UserViewService", - "ad6ed361-af14-458f-8fb7-d4c11baa45d2": "DigitalSubscription", - "79296df8-645a-4ef7-a011-912d1cdcf75a": "ContactDetails", - "ac406bf8-e53e-49f1-9088-2af28cccd285": "ContributionRecord", - "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3": "NoteLogAuthor", - "8078e3d1-0c63-4ace-aafa-68498b39ccd6": "Form", - "58280f3c-9d63-4eae-9509-3f223872fb25": "Application", - "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6": "DivergentAttachmentAnnotation", - "1252ce12-540c-4724-ad70-f70940956de0": "GraphVertex", - "7299d721-d17f-4562-8286-bcd451814478": "Rating", - "f20f5f45-1afb-41c1-9a09-34d8812626a4": "RelationalDBSchemaType", - "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f": "SchemaType", - "347005ba-2b35-4670-b5a7-12c9ebed0cf7": "Collection", - "24b092ac-42e9-43dc-aeca-eb034ce307d9": "EnumSchemaType", - "b5ec6e07-6419-4225-9dc4-fb55aba255c6": "SimpleSchemaType", - "492e343f-2516-43b8-94b0-5bae0760dda6": "DesignModelElement", - "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec": "TechnicalControl", - "a518de03-0f72-4944-9cd5-e05b43ae9c5e": "GovernanceStatusLevel", - "2f5796f5-3fac-4501-9d0d-207aa8620d16": "DisplayDataSchemaType", - "dbc20663-d705-4ff0-8424-80c262c6b8e7": "Endpoint", - "46db26d5-abb2-538b-bc15-d62d373c5db6": "TeamMember", - "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67": "GovernanceApproach", - "82f9c664-e59d-484c-a8f3-17088c23a2f3": "VirtualConnection", - "46f9ea33-996e-4c62-a67d-803df75ef9d4": "DisplayDataField", - "1fad7fe4-5115-412b-ae31-a418e93888fe": "IncidentClassifier", - "78de00ea-3d69-47ff-a6d6-767587526624": "ExternalSchemaType", - "eab811ec-556a-45f1-9091-bc7ac8face0f": "DeployedDatabaseSchema", - "54055c38-b9ad-4a66-a75b-14dc643d4c69": "SoftwareCapability", - "f2f5dae9-8410-420f-81f4-5d08543e07aa": "KafkaTopic", - "c04e29b2-2d66-48fc-a20d-e59895de6040": "ControlledGlossaryTerm", - "28452091-6b27-4f40-8e31-47ce34f58387": "VirtualMachine", - "983c5e72-801b-4e42-bc51-f109527f2317": "GraphSchemaType", - "10752b4a-4b5d-4519-9eae-fdd6d162122f": "DataFile", - "1abd16db-5b8a-4fd9-aee5-205db3febe99": "Host", - "21756af1-06c9-4b06-87d2-3ef911f0a58a": "ComponentOwner", - "ce7e72b8-396a-4013-8688-f9d973067425": "RelationalTable", - "39444bf9-638e-4124-a5f9-1b8f3e1b008b": "EnterpriseAccessLayer", - "c9a183ab-67f4-46a4-8836-16fa041769b7": "DeployedConnector", - "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa": "SoftwareArchive", - "e44d5019-37e5-4965-8b89-2bef412833bf": "SolutionOwner", - "06659195-3111-4c91-8931-a65f655378d9": "ConceptModelElement", - "7dbb3e63-138f-49f1-97b4-66313871fc14": "DeployedAPI", - "646727c7-9ad4-46fa-b660-265489ad96c6": "NoteLog", - "6cea5b53-558c-48f1-8191-11d48db29fb4": "Annotation", - "0075d603-1627-41c5-8cae-f5458d1247fe": "MediaCollection", - "6b60a73e-47bc-4096-9073-f94cab975958": "DesignPattern", - "89a76b24-deb8-45bf-9304-a578a610326f": "GovernanceResponsibility", - "283a127d-3acd-4d64-b558-1fce9db9a35b": "APIManager", - "979d97dd-6782-4648-8e2a-8982994533e6": "KeyStoreCollection", - "af536f20-062b-48ef-9c31-1ddd05b04c56": "ExternalReference", - "8bc88aba-d7e4-4334-957f-cfe8e8eadc32": "EventType", - "67e08705-2d2a-4df6-9239-1818161a41e0": "SchemaLinkElement" - }, - "entityTypeNameToGUID": { - "APISchemaType": "b46cddb3-9864-4c5d-8a49-266b3fc95cb8", - "ControlPointDefinition": "a376a993-5f1c-4926-b74e-a15a38e1d55a", - "GovernancePolicy": "a7defa41-9cfa-4be5-9059-359022bb016d", - "DataProfileAnnotation": "bff1f694-afd0-4829-ab11-50a9fbaf2f5f", - "Document": "b463827c-c0a0-4cfb-a2b2-ddc63746ded4", - "DeployedSoftwareComponent": "486af62c-dcfd-4859-ab24-eab2e380ecfd", - "LiteralSchemaType": "520ebb91-c4eb-4d46-a3b1-974875cdcf0d", - "DataFile": "10752b4a-4b5d-4519-9eae-fdd6d162122f", - "IntegrationGroup": "4d7c43ec-983b-40e4-af78-6fb66c4f5136", - "Referenceable": "a32316b8-dc8c-48c5-b12b-71c1b2a080bf", - "ContactDetails": "79296df8-645a-4ef7-a011-912d1cdcf75a", - "Endpoint": "dbc20663-d705-4ff0-8424-80c262c6b8e7", - "ValidValuesSet": "7de10805-7c44-40e3-a410-ffc51306801b", - "VerificationPointDefinition": "27db26a1-ff66-4042-9932-ddc728b977b9", - "IntegrationReport": "b8703d3f-8668-4e6a-bf26-27db1607220d", - "DataStore": "30756d0b-362b-4bfa-a0de-fce6a8f47b47", - "EventTypeList": "77ccda3d-c4c6-464c-a424-4b2cb27ac06c", - "Actor": "16d2c34a-43db-476b-93ae-6a2996f514ec", - "InformationSupplyChainSegment": "6d9980b2-5c0b-4314-8d8d-9fa45f8904d1", - "GovernanceProcedure": "69055d10-51dc-4c2b-b21f-d76fad3f8ef3", - "RelationalTable": "ce7e72b8-396a-4013-8688-f9d973067425", - "ImplementationSnippet": "49990755-2faa-4a62-a1f3-9124b9c73df4", - "SubjectAreaDefinition": "d28c3839-bc6f-41ad-a882-5667e01fea72", - "UserIdentity": "fbe95779-1f3c-4ac6-aa9d-24963ff16282", - "ConceptBeadLink": "13defd95-6452-4398-8382-e47f1a271eff", - "GovernanceDomainDescription": "084cd115-5d0d-4f12-8093-697526a120ea", - "DesignModelScope": "788957f7-a203-45bd-994d-0ab018275821", - "RequestForAction": "f45765a9-f3ae-4686-983f-602c348e020d", - "Project": "0799569f-0c16-4a1f-86d9-e2e89568f7fd", - "SolutionBlueprint": "4aa47799-5128-4eeb-bd72-e357b49f8bfe", - "IntegrationConnector": "759da11b-ebb6-4382-bdc9-72adc7c922db", - "GlossaryCategory": "e507485b-9b5a-44c9-8a28-6967f7ff3672", - "ConnectorCategory": "fb60761f-7afd-4d3d-9efa-24bc85a7b22e", - "NamingStandardRuleSet": "ba70f506-1f81-4890-bb4f-1cb1d99c939e", - "CrowdSourcingContributor": "3a84c94c-ac6f-4be1-a72a-07dcec7b1fe3", - "ConceptBeadAttribute": "d804d406-ac74-4f92-9bde-2ba0793680ea", - "RegulationArticle": "829a648d-f249-455d-8127-aeafa021f832", - "GovernanceObligation": "0cec20d3-aa29-41b7-96ea-1c544ed32537", - "CSVFile": "2ccb2117-9cee-47ca-8150-9b3a543adcec", - "IncidentReport": "072f252b-dea7-4b88-bb2e-8f741c9ca7f6e", - "SoftwareServerPlatform": "ba7c7884-32ce-4991-9c41-9778f1fec6aa", - "NoteLogAuthor": "3a84d94c-ac6f-4be1-a72a-07dbec7b1fe3", - "ExternalSchemaType": "78de00ea-3d69-47ff-a6d6-767587526624", - "DataFileCollection": "962de053-ab51-40eb-b843-85b98013f5ca", - "HadoopCluster": "abc27cf7-e526-4d1b-9c25-7dd60a7993e4", - "KeystoreFile": "17bee904-5b35-4c81-ac63-871c615424a2", - "MetadataRepository": "c40397bd-eab0-4b2e-bffb-e7fa0f93a5a9", - "EventSchemaAttribute": "5be4ee8f-4d0c-45cd-a411-22a468950342", - "DocumentSchemaType": "33da99cd-8d04-490c-9457-c58908da7794", - "SecurityService": "2df2069f-6475-400c-bf8c-6d2072a55d47", - "Infrastructure": "c19746ac-b3ec-49ce-af4b-83348fc55e07", - "SchemaElement": "718d4244-8559-49ed-ad5a-10e5c305a656", - "Team": "36db26d5-aba2-439b-bc15-d62d373c5db6", - "RelationalColumn": "aa8d5470-6dbc-4648-9e2f-045e5df9d2f9", - "EventBroker": "309dfc3c-663b-4732-957b-e4a084436314", - "MediaFile": "c5ce5499-9582-42ea-936c-9771fbd475f8", - "SubjectAreaOwner": "c6fe40af-cdd6-4ca7-98c4-353d2612921f", - "ConceptModelElement": "06659195-3111-4c91-8931-a65f655378d9", - "ConnectorType": "954421eb-33a6-462d-a8ca-b5709a1bd0d4", - "DatabaseManager": "68b35c1e-6c28-4ac3-94f9-2c3dbcbb79e9", - "GovernanceMetric": "9ada8e7b-823c-40f7-adf8-f164aabda77e", - "Connection": "114e9f8f-5ff3-4c32-bd37-a7eb42712253", - "RepositoryGovernanceEngine": "2b3bed05-c227-47d7-87a3-139ab0568361", - "DataManager": "82efa1fa-501f-4ac7-942c-6536c4a1cd61", - "PortAlias": "DFa5aEb1-bAb4-c25B-bDBD-B95Ce6fAB7F5", - "APIManager": "283a127d-3acd-4d64-b558-1fce9db9a35b", - "GraphStore": "86de3633-eec8-4bf9-aad1-e92df1ca2024", - "MetadataRepositoryCohort": "43e7dca2-c7b4-4cdf-a1ea-c9d4f7093893", - "Agreement": "88886b53-c839-48fa-bcfa-83ebcf8abbb5", - "TransientEmbeddedProcess": "9bd9d37a-b2ae-48ec-9776-080f667e91c5", - "JSONFile": "baa608fa-510e-42d7-95cd-7c12fa37bb35", - "KafkaTopic": "f2f5dae9-8410-420f-81f4-5d08543e07aa", - "LocationOwner": "3437fd1d-5098-426c-9b55-c94d1fc5dc0e", - "DerivedRelationalColumn": "a9f7d15d-b797-450a-8d56-1ba55490c019", - "BusinessCapability": "7cc6bcb2-b573-4719-9412-cf6c3f4bbb15", - "CohortRegistryStore": "2bfdcd0d-68bb-42c3-ae75-e9fb6c3dff70", - "GovernanceActionProcess": "4d3a2b8d-9e2e-4832-b338-21c74e45b238", - "GovernanceRepresentative": "6046bdf8-a37e-4bc4-b51d-325d8c31a96c", - "Port": "e3d9FD9F-d5eD-2aed-CC98-0bc21aB6f71C", - "QuerySchemaType": "4d11bdbb-5d4a-488b-9f16-bf1e34d34dd9", - "PortImplementation": "ADbbdF06-a6A3-4D5F-7fA3-DB4Cb0eDeC0E", - "DerivedSchemaAttribute": "cf21abfe-655a-47ba-b9b6-f73394745c80", - "DataClassAnnotation": "0c8a3673-04ef-406f-899d-e88de67f6176", - "RepositoryGovernanceService": "978e7674-8231-4158-a4e3-a5ccdbcad60e", - "DisplayDataField": "46f9ea33-996e-4c62-a67d-803df75ef9d4", - "Process": "d8f33bd7-afa9-4a11-a8c7-07dcec83c050", - "RootSchemaType": "126962bf-dd26-4fcf-97d8-d0ad1fdd2d50", - "GovernanceActionType": "92e20083-0393-40c0-a95b-090724a91ddc", - "MetadataAccessService": "0bc3a16a-e8ed-4ad0-a302-0773365fdef0", - "SearchKeyword": "0134c9ae-0fe6-4224-bb3b-e18b78a90b1e", - "SchemaType": "5bd4a3e7-d22d-4a3d-a115-066ee8e0754f", - "DeployedReportType": "ed53a480-e6d4-44f1-aac7-3fac60bbb00e", - "InformationSupplyChain": "fa6de61d-98cb-48c4-b21f-ab7186235fd4", - "DigitalServiceManager": "6dfba6ce-e925-4281-880d-d04100c5b991", - "TabularColumnType": "a7392281-348d-48a4-bad7-f9742d7696fe", - "BoundedSchemaType": "77133161-37a9-43f5-aaa3-fd6d7ff92fdb", - "FileFolder": "229ed5cc-de31-45fc-beb4-9919fd247398", - "ActorProfile": "5a2f38dc-d69d-4a6f-ad26-ac86f118fa35", - "ClassificationAnnotation": "23e8287f-5c7e-4e03-8bd3-471fc7fc029c", - "ToDo": "93dbc58d-c826-4bc2-b36f-195148d46f86", - "SimpleSchemaType": "b5ec6e07-6419-4225-9dc4-fb55aba255c6", - "DesignModelElement": "492e343f-2516-43b8-94b0-5bae0760dda6", - "ReferenceCodeMappingTable": "9c6ec0c6-0b26-4414-bffe-089144323213", - "BareMetalComputer": "8ef355d4-5cd7-4038-8337-62671b088920", - "SecurityGroup": "042d9b5c-677e-477b-811f-1c39bf716759", - "DataFolder": "9f1fb984-db15-43ee-85fb-f8b0353bfb8b", - "ProjectManager": "0798569f-0c16-4a1f-86d9-e2e89568f7fd", - "GraphSchemaType": "983c5e72-801b-4e42-bc51-f109527f2317", - "SimpleDocumentType": "42cfccbf-cc68-4980-8c31-0faf1ee002d3", - "Glossary": "36f66863-9726-4b41-97ee-714fd0dc6fe4", - "APIParameter": "10277b13-509c-480e-9829-bc16d0eafc53", - "FingerprintAnnotation": "b3adca2a-ce66-4b29-bf2e-7406ada8ab49", - "QueryDataField": "0eb92215-52b1-4fac-92e7-ff02ff385a68", - "ComponentOwner": "21756af1-06c9-4b06-87d2-3ef911f0a58a", - "ValidValueDefinition": "09b2133a-f045-42cc-bb00-ee602b74c618", - "DivergentRelationshipAnnotation": "b6c6938a-fdc9-438f-893c-0b5b1d4a5bb3", - "Form": "8078e3d1-0c63-4ace-aafa-68498b39ccd6", - "EnumSchemaType": "24b092ac-42e9-43dc-aeca-eb034ce307d9", - "Rating": "7299d721-d17f-4562-8286-bcd451814478", - "PrimitiveSchemaType": "f0f75fba-9136-4082-8352-0ad74f3c36ed", - "DesignPattern": "6b60a73e-47bc-4096-9073-f94cab975958", - "DisplayDataSchemaType": "2f5796f5-3fac-4501-9d0d-207aa8620d16", - "DisplayDataContainer": "f2a4ff99-1954-48c0-8081-92d1a4dfd910", - "DeployedReport": "e9077f4f-955b-4d7b-b1f7-12ee769ff0c3", - "ProjectCharter": "f96b5a32-42c1-4a74-8f77-70a81cec783d", - "SoftwareServerCapability": "fe30a033-8f86-4d17-8986-e6166fa24177", - "PersonRole": "ac406bf8-e53e-49f1-9088-2af28bcbd285", - "SchemaAnalysisAnnotation": "3c5aa68b-d562-4b04-b189-c7b7f0bf2ced", - "ArchiveEngine": "773298be-68ab-4b99-99ab-19eaa886261e", - "GraphVertex": "1252ce12-540c-4724-ad70-f70940956de0", - "DataSourcePhysicalStatusAnnotation": "e9ba276e-6d9f-4999-a5a9-9ddaaabfae23", - "MetadataCollection": "ea3b15af-ed0e-44f7-91e4-bdb299dd4976", - "GovernanceControl": "c794985e-a10b-4b6c-9dc2-6b2e0a2901d3", - "DeployedDatabaseSchema": "eab811ec-556a-45f1-9091-bc7ac8face0f", - "DeployedAPI": "7dbb3e63-138f-49f1-97b4-66313871fc14", - "DivergentAttachmentClassificationAnnotation": "a2a5cb74-f8e0-470f-be71-26b7e32166a6", - "TermsAndConditions": "2ddc42d3-7791-4b4e-a064-91df9300290a", - "ComplexSchemaType": "786a6199-0ce8-47bf-b006-9ace1c5510e4", - "CohortMember": "42063797-a78a-4720-9353-52026c75f667", - "GovernanceRole": "de2d7f2e-1759-44e3-b8a6-8af53e8fb0ee", - "OrganizationalControl": "befa1458-79b8-446a-b813-536700e60fa8", - "ArchiveService": "e6c049e2-56aa-4512-a634-20cd7085e534", - "ControlledGlossaryTerm": "c04e29b2-2d66-48fc-a20d-e59895de6040", - "RelationalColumnType": "f0438d80-6eb9-4fac-bcc1-5efee5babcfc", - "EmbeddedProcess": "8145967e-bb83-44b2-bc8c-68112c6a5a06", - "MetadataRepositoryService": "27891e52-1255-4a33-98a2-377717a25334", - "QualityAnnotation": "72e6473d-4ce0-4609-80a4-e6e949a7f520", - "Regulation": "e3c4293d-8846-4500-b0c0-197d73aba8b0", - "GovernanceProcess": "b68b5d9d-6b79-4f3a-887f-ec0f81c54aea", - "Community": "fbd42379-f6c3-4f08-b6f7-378565cda993", - "BusinessOwner": "0e83bb5f-f2f5-4a85-92eb-f71e92a181f5", - "DataFeed": "e87836ad-f8bd-4c52-aecd-0f1872c692e5", - "Location": "3e09cb2b-5f15-4fd2-b004-fe0146ad8628", - "AvroFile": "75293260-3373-4777-af7d-7274d5c0b9a5", - "CertificationType": "97f9ffc9-e2f7-4557-ac12-925257345eea", - "UserViewService": "1f83fc7c-75bb-491d-980d-ff9a6f80ae02", - "DigitalService": "f671e1fc-b204-4ee6-a4e2-da1633ecf50e", - "DataSet": "1449911c-4f44-4c22-abc0-7540154feefb", - "MapDocumentType": "b0f09598-ceb6-415b-befc-563ecadd5727", - "MapSchemaType": "bd4c85d0-d471-4cd2-a193-33b0387a19fd", - "TranslationDetail": "d7df0579-8671-48f0-a8aa-38a487d418c8", - "DataProcessingDescription": "685f91fb-c74b-437b-a9b6-c5e557c6d3b2", - "GovernanceActionService": "ececb378-31ac-4cc3-99b4-1c44e5fbc4d9", - "DocumentStore": "37156790-feac-4e1a-a42e-88858ae6f8e1", - "StorageVolume": "14145458-f0d0-4955-8899-b8a2874708c9", - "ExternalReference": "af536f20-062b-48ef-9c31-1ddd05b04c56", - "DigitalSubscription": "ad6ed361-af14-458f-8fb7-d4c11baa45d2", - "GovernanceDefinition": "578a3500-9ad3-45fe-8ada-e4e9572c37c8", - "DivergentClassificationAnnotation": "8efd6257-a53e-451d-abfc-8e4899c38b1f", - "Network": "e0430f59-f021-411a-9d81-883e1ff3f6f6", - "Database": "0921c83f-b2db-4086-a52c-0d10e52ca078", - "Asset": "896d14c2-7522-4f6c-8519-757711943fe6", - "SetSchemaType": "b2605d2d-10cd-443c-b3e8-abf15fb051f0", - "ObjectAttribute": "ccb408c0-582e-4a3a-a926-7082d53bb669", - "SoftwareService": "f3f69251-adb1-4042-9d95-70082f95a028", - "SemanticAnnotation": "0b494819-28be-4604-b238-3af20963eea6", - "AssetOwner": "ac406bf8-e53e-49f1-9088-2af28eeee285", - "MetadataIntegrationService": "92f7fe27-cd2f-441c-a084-156821aa5bca", - "BusinessImperative": "bb094b5e-0934-4d8b-8727-48eb5d241a46", - "NetworkGateway": "9bbae94d-e109-4c96-b072-4f97123f04fd", - "SecurityAccessControl": "f53bd594-5f75-4cf9-9f77-f5c35396590e", - "ContributionRecord": "ac406bf8-e53e-49f1-9088-2af28cccd285", - "StructDocumentType": "f6245c25-8f73-45eb-8fb5-fa17a5f27649", - "ParquetFile": "97cba3a0-1dfd-4129-82b6-798de3eec0a4", - "DesignModelGroup": "b144ee2a-fa71-4897-b51a-dd5239c26910", - "DataProcessingPurpose": "9062df4c-9f4a-4012-a67a-968d7a3f4bcf", - "DataItemOwner": "69836cfd-39b8-460b-8727-b04e19210069", - "DataField": "3c5bbc8b-d562-4b04-b189-c7b7f0bf2cea", - "HostCluster": "9794f42f-4c9f-4fe6-be84-261f0a7de890", - "TeamLeader": "36db26d5-abb2-439b-bc15-d62d373c5db6", - "RelationshipAdviceAnnotation": "740f07dc-4ee8-4c2a-baba-efb55c73eb68", - "InformalTag": "ba846a7b-2955-40bf-952b-2793ceca090a", - "GovernanceStatusLevel": "a518de03-0f72-4944-9cd5-e05b43ae9c5e", - "Application": "58280f3c-9d63-4eae-9509-3f223872fb25", - "Person": "ac406bf8-e53e-49f1-9088-2af28bbbd285", - "EnforcementPointDefinition": "e87ff806-bb9c-4c5d-8106-f38f2dd21037", - "VirtualMachine": "28452091-6b27-4f40-8e31-47ce34f58387", - "ApplicationService": "5b7f340e-7dc9-45c0-a636-c20605147c94", - "VirtualContainer": "e2393236-100f-4ac0-a5e6-ce4e96c521e7", - "GovernanceDriver": "c403c109-7b6b-48cd-8eee-df445b258b33", - "DivergentAttachmentRelationshipAnnotation": "5613677a-865f-474e-8044-4167fa5a31b9", - "Organization": "50a61105-35be-4ee3-8b99-bdd958ed0685", - "Meeting": "6bf90c79-32f4-47ad-959c-8fff723fe744", - "GovernanceAction": "c976d88a-2b11-4b40-b972-c38d41bfc6be", - "DataFieldAnnotation": "72ed6de6-79d9-4e7d-aefc-b969382fc4b0", - "DataProfileLogAnnotation": "368e6fb3-7323-4f81-a723-5182491594bd", - "OpenDiscoveryEngine": "be650674-790b-487a-a619-0a9002488055", - "QueryDataContainer": "b55c2740-2d41-4433-a099-596c8e9b7bf6", - "LogFile": "ff4c8484-9127-464a-97fc-99579d5bc429", - "SolutionComponent": "b83f3d42-f3f7-4155-ae65-58fb44ea7644", - "SchemaTypeChoice": "5caf954a-3e33-4cbd-b17d-8b8613bd2db8", - "GovernanceClassificationLevel": "8af91d61-2ae8-4255-992e-14d7f745a556", - "DocumentSchemaAttribute": "b5cefb7e-b198-485f-a1d7-8e661012499b", - "SoftwareServer": "aa7c7884-32ce-4991-9c41-9778f1fec6aa", - "ExecutionPointDefinition": "d7f8d1d2-8cec-4fd2-b9fd-c8307cad750d", - "DockerContainer": "9882b8aa-eba3-4a30-94c6-43117efd11cc", - "RelatedMedia": "747f8b86-fe7c-4c9b-ba75-979e093cc307", - "EnterpriseAccessLayer": "39444bf9-638e-4124-a5f9-1b8f3e1b008b", - "DivergentAttachmentValueAnnotation": "e22a1ffe-bd90-4faf-b6a1-13fafb7948a2", - "Annotation": "6cea5b53-558c-48f1-8191-11d48db29fb4", - "GovernanceRule": "8f954380-12ce-4a2d-97c6-9ebe250fecf8", - "OpenDiscoveryAnalysisReport": "acc7cbc8-09c3-472b-87dd-f78459323dcb", - "ArrayDocumentType": "ddd29c67-db9a-45ff-92aa-6d17a12a8ee2", - "DesignModel": "bf17143d-8605-48c2-ba80-64c2ac8f8379", - "OpenMetadataRoot": "4e7761e8-3969-4627-8f40-bfe3cde85a1d", - "ServiceLevelObjective": "22c4e433-1b87-4446-840a-03f83d2dc113", - "VirtualConnection": "82f9c664-e59d-484c-a8f3-17088c23a2f3", - "TabularColumn": "d81a0425-4e9b-4f31-bc1c-e18c3566da10", - "SuspectDuplicateAnnotation": "f703a621-4078-4c07-ab22-e7c334b94235", - "SchemaAttribute": "1a5e159b-913a-43b1-95fe-04433b25fca9", - "GraphEdge": "d4104eb3-4f2d-4d83-aca7-e58dd8d5e0b1", - "Threat": "4ca51fdf-9b70-46b1-bdf6-8860429e78d8", - "EventType": "8bc88aba-d7e4-4334-957f-cfe8e8eadc32", - "OperatingPlatform": "bd96a997-8d78-42f6-adf7-8239bc98501c", - "RelationalTableType": "1321bcc0-dc6a-48ed-9ca6-0c6f934b0b98", - "DivergentValueAnnotation": "b86cdded-1078-4e42-b6ba-a718c2c67f62", - "OpenDiscoveryService": "2f278dfc-4640-4714-b34b-303e84e4fc40", - "SoftwareCapability": "54055c38-b9ad-4a66-a75b-14dc643d4c69", - "Like": "deaa5ca0-47a0-483d-b943-d91c76744e01", - "StructSchemaType": "a13b409f-fd67-4506-8d94-14dfafd250a4", - "GovernanceActionEngine": "5d74250a-57ca-4197-9475-8911f620a94e", - "ITInfrastructure": "151e6dd1-54a0-4b7f-a072-85caa09d1dda", - "APIOperation": "f1c0af19-2729-4fac-996e-a7badff3c21c", - "Engine": "3566527f-b1bd-4e7a-873e-a3e04d5f2a14", - "SolutionOwner": "e44d5019-37e5-4965-8b89-2bef412833bf", - "SolutionPort": "62ef448c-d4c1-4c94-a565-5e5625f6a57b", - "KeyStoreCollection": "979d97dd-6782-4648-8e2a-8982994533e6", - "GovernanceResponsibility": "89a76b24-deb8-45bf-9304-a578a610326f", - "TabularFileColumn": "af6265e7-5f58-4a9c-9ae7-8d4284be62bd", - "NoteEntry": "2a84d94c-ac6f-4be1-a72a-07dcec7b1fe3", - "GovernancePrinciple": "3b7d1325-ec2c-44cb-8db0-ce207beb78cf", - "SetDocumentType": "67228a7a-9d8d-4fa7-b217-17474f1f4ac6", - "ConceptBead": "f7feb509-bce6-4989-a340-5dc7e3eec313", - "Catalog": "f4fffcc0-d9eb-4bb9-8aff-0718932f689e", - "DataSourceMeasurementAnnotation": "c85bea73-d7af-46d7-8a7e-cb745910b1df", - "PropertyFacet": "6403a704-aad6-41c2-8e08-b9525c006f85", - "EngineHostingService": "90880f0b-c7a3-4d1d-93cc-0b877f27cd33", - "ReferenceCodeTable": "201f48c5-4e4b-41dc-9c5f-0bc9742190cf", - "TechnicalControl": "d8f6eb5b-36f0-49bd-9b25-bf16f370d1ec", - "AnnotationReview": "b893d6fc-642a-454b-beaf-809ee4dd876a", - "MediaCollection": "0075d603-1627-41c5-8cae-f5458d1247fe", - "Collection": "347005ba-2b35-4670-b5a7-12c9ebed0cf7", - "TabularSchemaType": "248975ec-8019-4b8a-9caf-084c8b724233", - "GovernanceZone": "290a192b-42a7-449a-935a-269ca62cfdac", - "RelationalDBSchemaType": "f20f5f45-1afb-41c1-9a09-34d8812626a4", - "DivergentDuplicateAnnotation": "251e443c-dee0-47fa-8a73-1a9d511915a0", - "GovernanceApproach": "2d03ec9d-bd6b-4be9-8e17-95a7ecdbaa67", - "ArraySchemaType": "ba8d29d2-a8a4-41f3-b29f-91ad924dd944", - "DivergentAttachmentAnnotation": "f3ed48bc-b0ea-4e1f-a8ab-75f9f3cf87a6", - "ObjectSchemaType": "6920fda1-7c07-47c7-84f1-9fb044ae153e", - "TableDataSet": "20c45531-5d2e-4eb6-9a47-035cb1067b82", - "GovernanceStrategy": "3c34f121-07a6-4e95-a07d-9b0ef17b7bbf", - "KubernetesCluster": "101f1c93-7f5d-44e2-9ea4-5cf21726ba5c", - "LastAttachment": "ba3c8dfa-42a5-492c-bebc-88fa7492e75a", - "GovernanceOfficer": "578a3510-9ad3-45fe-8ada-e4e9572c37c8", - "LicenseType": "046a049d-5f80-4e5b-b0ae-f3cf6009b513", - "ITProfile": "81394f85-6008-465b-926e-b3fae4668937", - "GlossaryTerm": "0db3e6ec-f5ef-4d75-ae38-b7ee6fd6ec0a", - "APIParameterList": "ba167b12-969f-49d3-8bea-d04228d9a44b", - "Topic": "29100f49-338e-4361-b05d-7e4e8e818325", - "DeployedConnector": "c9a183ab-67f4-46a4-8836-16fa041769b7", - "IncidentClassifier": "1fad7fe4-5115-412b-ae31-a418e93888fe", - "Comment": "1a226073-9c84-40e4-a422-fbddb9b84278", - "GovernanceEngine": "3fa23d4a-aceb-422f-9301-04ed474c6f74", - "EventSet": "bead9aa4-214a-4596-8036-aa78395bbfb1", - "NamingStandardRule": "52505b06-98a5-481f-8a32-db9b02afabfc", - "ExternalId": "7c8f8c2c-cc48-429e-8a21-a1f1851ccdb0", - "Host": "1abd16db-5b8a-4fd9-aee5-205db3febe99", - "InformationView": "68d7b905-6438-43be-88cf-5de027b4aaaf", - "SubscriberList": "69751093-35f9-42b1-944b-ba6251ff513d", - "TeamMember": "46db26d5-abb2-538b-bc15-d62d373c5db6", - "SoftwareArchive": "4c4bfc3f-1374-4e4c-a76d-c8e82b2cafaa", - "DataProcessingAction": "7f53928f-9148-4710-ad37-47633f33cb08", - "CommunityMember": "fbd42379-f6c3-4f09-b6f7-378565cda993", - "OpenDiscoveryPipeline": "081abe00-740e-4143-b0d5-a1f55450fc22", - "GovernanceConfidentialityLevel": "49dd320b-4850-4838-9b78-f1285f0e6d2f", - "NoteLog": "646727c7-9ad4-46fa-b660-265489ad96c6", - "ExternalGlossaryLink": "183d2935-a950-4d74-b246-eac3664b5a9d", - "DataClass": "6bc727dc-e855-4979-8736-78ac3cfcd32f", - "GovernanceService": "191d870c-26f4-4310-a021-b8ca8772719d", - "SchemaLinkElement": "67e08705-2d2a-4df6-9239-1818161a41e0" - }, - "relationshipTypeGUIDToName": { - "e47a19d0-7e12-4cf7-9ad7-50856da7faa2": "AssociatedGroup", - "6337c9cd-8e5a-461b-97f9-5151bcb97a9e": "ValidValueMember", - "2cf1e949-7189-4bf2-8ee4-e1318e59abd7": "AttachedStorage", - "d5d588c3-46c9-420c-adff-6031802a7e51": "TermISATypeOFRelationship", - "cb10c107-b7af-475d-aab0-d78b8297b982": "GovernanceRoleAssignment", - "c628938e-815e-47db-8d1c-59bb2e84e028": "CategoryAnchor", - "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1": "AssetLocation", - "01664609-e777-4079-b543-6baffe910ff1": "ProfileIdentity", - "ee8c78a1-a3ae-4824-a4e1-dcb64bc3a45b": "SubjectAreaGovernance", - "806933fb-7925-439b-9876-922a960d2ba1": "GovernanceControlLink", - "f081808d-545a-41cb-a9aa-c4f074a16c78": "ProjectCharterLink", - "b5de932a-738c-4c69-b852-09fec2b9c678": "BusinessCapabilityControls", - "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4": "GovernanceProcessImplementation", - "6447c9cd-8e5a-461b-97f9-5151bcb97a9e": "RelatedDesignPattern", - "d0dd0ac7-01f4-48e0-ae4d-4f7268573fa8": "SolutionComponentImplementation", - "c5e6fada-2c12-46ee-afa9-b71dd1bd8179": "GovernanceDriverLink", - "ea5e126a-a8fa-4a43-bcfa-309a98aa0185": "Antonym", - "d57043c2-eeab-4167-8d0d-2223af8aee93": "DesignModelOwnership", - "d2490c0c-06cc-458a-add2-33cf2f5dd724": "DataFlow", - "f672245f-35b5-4ca7-b645-014cf61d5b75": "GovernanceActionTypeExecutor", - "5652d03a-f6c9-411a-a3e4-f490d3856b64": "SolutionComponentPort", - "5d3c2fb7-fa04-4d77-83cb-fd9216a07769": "AnnotationReviewLink", - "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114": "SolutionComposition", - "f82a96c2-95a3-4223-88c0-9cbf2882b772": "NestedLocation", - "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed": "ReplacementTerm", - "70dbbda3-903f-49f7-9782-32b503c43e0e": "ProcessHierarchy", - "89c3c695-9e8d-4660-9f44-ed971fd55f89": "GovernedBy", - "89c3c695-9e8d-4660-9f44-ed971fd55f88": "GovernanceResults", - "46ec49bf-af66-4575-aab7-06ce895120cd": "TargetForAction", - "91ff7542-c275-4cd3-b367-97eec3360422": "DigitalServiceManagement", - "017d0518-fc25-4e5e-985e-491d91e61e17": "AdjacentLocation", - "4f798c0c-6769-4a2d-b489-d2714d89e0a4": "AttachedNoteLog", - "6932ba75-9522-4a06-a4a4-ee60a4df6aab": "DeployedOn", - "8845990e-7fd9-4b79-a19d-6c4730dadd6b": "GovernanceResponse", - "4a985162-8130-4559-b68e-6e6a5dc19c2a": "DesignModelGroupOwnership", - "2dc524d2-e29f-4186-9081-72ea956c75de": "UsedInContext", - "79ac27f6-be9c-489f-a7c2-b9add0bf705c": "DigitalServiceOperator", - "7eded424-f176-4258-9ae6-138a46b2845f": "AssetDiscoveryReport", - "f2bd7401-c064-41ac-862c-e5bcdc98fa1e": "HostNetwork", - "57e3687e-393e-4c0c-a4f1-a6634075465b": "LastAttachmentLink", - "e3fdafe3-692a-46c6-a595-c538cc189dd9": "AssignmentScope", - "1353400f-b0ab-4ab9-ab09-3045dd8a7140": "MediaReference", - "6b947ccc-1a70-4785-9ca3-d6326bc51291": "DataClassHierarchy", - "74f4094d-dba2-4ad9-874e-d422b69947e2": "Synonym", - "87b7371e-e311-460f-8849-08646d0d6ad3": "SourcedFrom", - "605aaa6d-682e-405c-964b-ca6aaa94be1b": "AnnotationExtension", - "83d12156-f8f3-4b4b-b31b-18c140df9aa3": "RelatedIntegrationReport", - "e5bd6acf-932c-4d9c-85ff-941a8e4451db": "OperatingPlatformManifest", - "d9a39553-6a47-4477-a217-844300c07cf2": "ValidValuesImplementation", - "1a1c3933-a583-4b0c-9e42-c3691296a8e0": "HostClusterMember", - "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b": "SubjectAreaHierarchy", - "970a3405-fde1-4039-8249-9aa5f56d5151": "LinkedFile", - "35e53b7f-2312-4d66-ae90-2d4cb47901ee": "License", - "4a316abe-bccd-4d11-ad5a-4bfb4079b80b": "Peer", - "4cb88900-1446-4eb6-acea-29cd9da45e63": "NestedFile", - "bc5a5eb1-881b-4055-aa2c-78f314282ac2": "CatalogTarget", - "767fb343-4699-49c1-a0f8-af6da78505f8": "DataClassComposition", - "4ab3b466-31bd-48ea-8aa2-75623476f2e2": "APIRequest", - "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62": "RelatedKeyword", - "fcdccfa3-e9f0-4543-8720-1958799fb6dc": "InformationSupplyChainComposition", - "6ae42e95-efc5-4256-bfa8-801140a29d2a": "Translation", - "207e5130-ab7c-4048-9249-a63a43c13d60": "InformationSupplyChainLink", - "1c2622b7-ac21-413c-89e1-6f61f348cd19": "DerivedSchemaTypeQueryTarget", - "03737169-ceb5-45f0-84f0-21c5929945af": "APIOperations", - "746875af-2e41-4d1f-864b-35265df1d5dc": "ProjectTeam", - "c5cb1362-07f6-486b-b80b-ba7922cacee9": "DesignModelImplementation", - "48ac9028-45dd-495d-b3e1-622685b54a01": "FolderHierarchy", - "6f89c320-22aa-4d99-9a97-442e8d214655": "AssociatedSnippet", - "3e844049-e59b-45dd-8e62-cde1add59f9e": "BoundedSchemaElementType", - "d2f8df24-6905-49b8-b389-31b2da156ece": "SearchKeywordLink", - "873e29bd-ca14-4833-a6bb-9ebdf89b5b1b": "DigitalServiceImplementation", - "1dfdec0f-f206-4db7-bac8-ec344205fb3c": "DataProcessingSpecification", - "3eb268f4-9419-4281-a487-d25ccd88eba3": "ExecutionPointUse", - "8335e6ed-fd86-4000-9bc5-5203062f28ba": "SolutionPortDelegation", - "1ebc4fb2-b62a-4269-8f18-e9237a2119ca": "TeamMembership", - "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3": "ApprovedPurpose", - "B216fA00-8281-F9CC-9911-Ae6377f2b457": "PortSchema", - "4ff6d91b-3836-4ba2-9ca9-87da91081faa": "DesignModelElementsInScope", - "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a": "PreferredTerm", - "0ffb9d87-7074-45da-a9b0-ae0859611133": "NestedSchemaAttribute", - "8292343f-6a96-4ca8-a447-38f734c75634": "AttachedTermsAndConditions", - "e2509715-a606-415d-a995-61d00503dad4": "AttachedLike", - "d9567840-9904-43a5-990b-4585c0446e00": "NextGovernanceActionType", - "be12ff15-0721-4a7e-8c98-334eaa884bdf": "RegulationCertificationType", - "8b9dd3ea-057b-4709-9b42-f16098523907": "CohortMemberMetadataCollection", - "56315447-88a6-4235-ba91-fead86524ebf": "ServerAssetUse", - "75026fac-f9e5-4da8-9ad1-e9c68d47f577": "DataProfileLogFile", - "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e": "TopicSubscribers", - "4c579e3d-a4ff-41c1-9931-33e6fc992f2b": "ITInfrastructureProfile", - "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3": "NetworkGatewayLink", - "6189d444-2da4-4cd7-9332-e48a1c340b44": "MapFromElementType", - "e701a5c8-c1ba-4b75-8257-e0a6569eda48": "GovernanceRuleImplementation", - "5ebc4fb2-b62a-4269-8f18-e9237a2229ca": "TeamStructure", - "af2b5fab-8f83-4a2b-b749-1e6219f61f79": "ActionAssignment", - "51465a59-c785-406d-929c-def34596e9af": "DigitalServiceProduct", - "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2": "DigitalServiceDesign", - "4b981d89-e356-4d9b-8f17-b3a8d5a86676": "DeployedVirtualContainer", - "4a316abe-eeee-4d11-ad5a-4bfb4079b80b": "PersonalContribution", - "a94b2929-9e62-4b12-98ab-8ac45691e5bd": "PeerDuplicateLink", - "0908e153-e0fd-499c-8a30-5ea8b81395cd": "ImpactedResource", - "8b7d7da5-0668-4174-a43b-8f8c6c068dd0": "SoftwareServerSupportedCapability", - "0999e2b9-45d6-42c4-9767-4b74b0b48b89": "AssociatedLog", - "017be6a8-0037-49d8-af5d-c45c41f25e0b": "IncidentDependency", - "4c4d1d9c-a9fc-4305-8b71-4e891c0f9ae0": "ZoneGovernance", - "eed5565d-7ac2-46fe-9a26-4722fad8d993": "SchemaTypeImplementation", - "111e6d2e-94e9-43ed-b4ed-f0d220668cbf": "ReferenceValueAssignment", - "707a156b-e579-4482-89a5-de5889da1971": "ValidValue", - "7c7da1a3-01b3-473e-972e-606eff0cb112": "CommunityMembership", - "e777d660-8dbe-453e-8b83-903771f054c0": "ConnectionToAsset", - "eb4f1f98-c649-4560-8a46-da17c02764a9": "SchemaTypeOption", - "f6b5cf4f-7b88-47df-aeb0-d80d28ba1ec1": "RuntimeForProcess", - "d1a9a79f-4c9c-4dff-837e-1353ba51b607": "ProcessInput", - "2b8bfab4-8023-4611-9833-82a0dc95f187": "ServerEndpoint", - "92b75926-8e9a-46c7-9d98-89009f622397": "AssetServerUse", - "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c": "TermHASARelationship", - "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139": "ZoneHierarchy", - "e076fbb3-54f5-46b8-8f1e-a7cb7e792673": "GovernanceDefinitionMetric", - "292125f7-5660-4533-a48a-478c5611922e": "LinkedType", - "58c87647-ada9-4c90-a3c3-a40ace46b1f7": "ReferenceableFacet", - "5ebc4fb2-b62a-4269-8f18-e9237a2119ca": "TeamLeadership", - "60f1e263-e24d-4f20-8c0d-b5e21232cd54": "SchemaAttributeDefinition", - "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2": "ProcessPort", - "576228af-33ec-4588-ba4e-6a864a097e10": "TranslationLink", - "cee3a190-fc8d-4e53-908a-f1b9689581e0": "LinkedMedia", - "9a5d78c2-1716-4783-bfc6-c300a9e2d092": "LinkedExternalSchemaType", - "892a3d1c-cfb8-431d-bd59-c4d38833bfb0": "SolutionLinkingWire", - "2c05beaf-e313-47f8-ac18-2298140b2ad9": "SoftwarePackageDependency", - "73cf5658-6a73-4ebc-8f4d-44fdfac0b437": "ResourceList", - "1a379e55-a4c0-4289-a1a4-b89d257611d1": "ConceptBeadRelationshipEnd", - "7540d9fb-1848-472e-baef-97a44b9f0c45": "KnownDuplicateLink", - "203ce62c-3cbf-4542-bf82-81820cba718f": "ValidValuesMapping", - "9b6a91b5-a339-4245-b208-040805f95a75": "IsATypeOfRelationship", - "696a81f5-ac60-46c7-b9fd-6979a1e7ad27": "TermCategorization", - "f3b18ac7-3357-4a0c-8988-77a98adad5b5": "DesignModelElementOwnership", - "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f": "MoreInformation", - "aca1277b-bf1c-42f5-9b3b-fbc2c9047325": "Actions", - "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb": "VisibleEndpoint", - "33937ece-5ab6-4cd3-a348-b8196ffc3b4e": "ContractLink", - "38c346e4-ddd2-42ef-b4aa-55d53c078d22": "LibraryTermReference", - "cb15c107-b7af-475d-aab0-d78b8297b982": "GovernanceResponsibilityAssignment", - "bc63ac45-b4d0-4fba-b583-92859de77dd8": "ProjectScope", - "6cb9af43-184e-4dfa-854a-1572bcf0fe75": "ContactThrough", - "390559eb-6a0c-4dd7-bc95-b9074caffa7f": "Certification", - "e5d7025d-8b4f-43c7-bcae-1047d650b94a": "SchemaQueryImplementation", - "7d881574-461d-475c-ab44-077451528cb8": "GroupedMedia", - "2d955049-e59b-45dd-8e62-cde1add59f9e": "SchemaAttributeType", - "b9179df5-6e23-4581-a8b0-2919e6322b12": "HostOperatingPlatform", - "1744d72b-903d-4273-9229-de20372a17e2": "DiscoveryInvocationReport", - "4a316abe-bcce-4d11-ad5a-4bfb4079b80b": "PersonRoleAppointment", - "a05f918e-e7e2-419d-8016-5b37406df63a": "Meetings", - "b472a2ec-f419-4d3f-86fb-e9d97365f961": "PermittedProcessing", - "2dcfe62b-341c-4c3d-b336-a94a52c20556": "DesignModelGroupMembership", - "833e849d-eda2-40bb-9e6b-c3ca0b56d581": "DataFieldAnalysis", - "d909eb3b-5205-4180-9f63-122a65b30738": "SoftwareServerDeployment", - "bf02c703-57a2-4ab7-b6db-f49b57b05985": "SolutionPortSchema", - "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82": "ConsolidatedDuplicateLink", - "de5b9501-3ad4-4803-a8b2-e311c72a4336": "APIEndpoint", - "0943e0ba-73ac-476b-8ebe-2ef30ba44976": "OperatingPlatformUse", - "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4": "ProfileLocation", - "b323c9cf-f254-49c7-a391-11222e9da70f": "GlossaryTermEvolution", - "5323a705-4c1f-456a-9741-41fdcb8e93ac": "GovernanceActionRequestSource", - "af904501-6347-4f52-8378-da50e8d74828": "ProcessCall", - "f3066075-9611-4886-9244-32cc6eb07ea9": "HostLocation", - "8f798c0c-6769-4a2d-b489-12714d89e0a4": "NoteLogAuthorship", - "3845b5cc-8c85-462f-b7e6-47472a568793": "GovernanceDefinitionScope", - "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f": "DigitalSupport", - "71e4b6fb-3412-4193-aff3-a16eccd87e8e": "CategoryHierarchyLink", - "ac63ac45-a4d0-4fba-b583-92859de77dd8": "ProjectManagement", - "6aab4ec6-f0c6-4c40-9f50-ac02a3483358": "SchemaTypeSnippet", - "8b9856b3-451e-45fc-afc7-fddefd81a73a": "MapToElementType", - "8c5b1415-2d1f-4190-ba6c-1fdd47f03269": "ExternalIdScope", - "5cabb76a-e25b-4bb5-8b93-768bbac005af": "CollectionMembership", - "887a7132-d6bc-4b92-a483-e80b60c86fb2": "ConnectionEndpoint", - "38edecc6-f385-4574-8144-524a44e3e712": "AttachedNoteLogEntry", - "2480aa71-44c5-414d-8b32-9c4340786d77": "SupportedSoftwareCapability", - "815b004d-73c6-4728-9dd9-536f4fe803cd": "AssetSchemaType", - "73510abd-49e6-4097-ba4b-23bd3ef15baa": "RelationshipAnnotation", - "3da21cc9-3cdc-4d87-89b5-c501740f00b2": "LibraryCategoryReference", - "4df37335-7f0c-4ced-82df-3b2fd07be1bd": "DataClassAssignment", - "633648f3-c951-4ad7-b975-9fc04e0f3d2e": "ConnectorImplementationChoice", - "86b176a2-015c-44a6-8106-54d5d69ba661": "AttributeForSchema", - "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646": "ToDoSource", - "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6": "APIHeader", - "0d90501b-bf29-4621-a207-0c8c953bdac9": "AttachedComment", - "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344": "AttachedRating", - "60f2d263-e24d-4f20-8c0d-b5e22222cd54": "DiscoveredDataField", - "0ac0e793-6727-45d2-9403-06bd19d9ce2e": "DetailedProcessingActions", - "0c42c999-4cac-4da4-afab-0e381f3a818e": "GovernancePolicyLink", - "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96": "ConnectionConnectorType", - "e490772e-c2c5-445a-aea6-1aab3499a76c": "IncidentOriginator", - "1d43d661-bdc7-4a91-a996-3239b8f82e56": "TermAnchor", - "e8303911-ba1c-4640-974e-c4d57ee1b310": "DigitalServiceDependency", - "2726df0e-4f3a-44e1-8433-4ca5301457fd": "SupportedGovernanceService", - "5b6a56f1-68e2-4e10-85f0-fda47a4263fd": "ProjectDependency", - "b1161696-e563-4cf9-9fd9-c0c76e47d063": "RelatedTerm", - "1c811d0b-e9ce-44af-b6ed-133e73322e32": "AgreementActor", - "7786a39c-436b-4538-acc7-d595b5856add": "ExternallySourcedGlossary", - "b827683c-2924-4df3-a92d-7be1888e23c0": "DataContentForDataSet", - "787eaf46-7cf2-4096-8d6e-671a0819d57e": "GovernanceImplementation", - "60f2d263-e24d-4f20-8c0d-b5e12356cd54": "DiscoveredNestedDataField", - "207e2594-e3e4-4be8-a12c-4c401656e241": "ActionTarget", - "b909eb3b-5205-4180-9f63-122a65b30738": "SoftwareServerPlatformDeployment", - "60f2d263-e24d-4f20-8c0d-b5e24648cd54": "SchemaTypeDefinition", - "28f63c94-aaef-4c84-98f7-d77aa605272e": "ImplementedBy", - "47f0ad39-db77-41b0-b406-36b1598e0ba7": "OrganizationalCapability", - "94715275-0520-43e9-81fe-4fe8ec3d8f3a": "InformationSupplyChainImplementation", - "809b7c6c-69f9-4dbf-a5dd-085664499438": "DesignModelGroupHierarchy", - "e8001de2-1bb1-442b-a66f-9addc3641eae": "APIResponse", - "28ab0381-c662-4b6d-b787-5d77208de126": "ExternalIdLink", - "ecf1a3ca-adc5-4747-82cf-10ec590c5c69": "AcceptedAnswer", - "f1ae975f-f11a-467b-8c7a-b023081e4712": "SolutionBlueprintComposition", - "503b4221-71c8-4ba9-8f3d-6a035b27971c": "GraphEdgeLink", - "4db83564-b200-4956-94a4-c95a5c30e65a": "CrowdSourcingContribution", - "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0": "GovernanceActionFlow", - "4b1641c4-3d1a-4213-86b2-d6968b6c65ab": "AttachedTag", - "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4": "DigitalSubscriber", - "c5d48b73-eadd-47db-ab64-3be99b2fb32d": "ValidValuesAssignment", - "2c318c3a-5dc2-42cd-a933-0087d852f67f": "DiscoveryEngineReport", - "7d818a67-ab45-481c-bc28-f6b1caf12f06": "ExternalReferenceLink", - "31e734ec-5baf-4e96-9f0d-e8a85081cb14": "GovernanceActionTypeUse", - "e3e40f99-70fe-478c-9676-78a50cded70b": "ProcessOutput", - "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a": "DataProcessingTarget", - "51d386a3-3857-42e3-a3df-14a6cad08b93": "DiscoveredAnnotation", - "dff45aeb-c65e-428c-9ab3-d756bc5d8dbb": "SupportedDiscoveryService", - "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff": "LineageMapping", - "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2": "RegisteredIntegrationConnector", - "8f1134f6-b9fe-4971-bc57-6e1b8b302b55": "ProjectHierarchy", - "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07": "ForeignKey", - "669e8aa4-c671-4ee7-8d03-f37d09b9d006": "TermTYPEDBYRelationship", - "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f": "EmbeddedConnection", - "e6670973-645f-441a-bec7-6f5570345b92": "SemanticAssignment", - "954cdba1-3d69-4db1-bf0e-d59fd2c25a27": "MetadataCohortPeer", - "4efd16d4-f397-449c-a75d-ebea42fe581b": "NextGovernanceAction", - "e690ab17-6779-46b4-a8f1-6872d88c1bbb": "GovernanceActionExecutor", - "db9583c5-4690-41e5-a580-b4e30a0242d3": "SchemaLinkToType", - "49f2ecb5-6bf7-4324-9824-ac98d595c404": "ResponsibilityStaffContact", - "51a2d263-e24d-4f20-8c0d-b5e12356cd54": "DataClassDefinition", - "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E": "PortDelegation", - "efd8a136-0aea-4668-b91a-30f947e38b82": "Stakeholder", - "5bad1df2-664b-407b-8036-2855e2ede92f": "ConceptBeadAttributeLink", - "35450726-1c32-4d41-b928-22db6d1ae2f4": "ControlFlow", - "a540c361-0ed1-45d6-b525-007592ae806d": "AgreementItem", - "50fab7c7-68bc-452f-b8eb-ec76829cac85": "ISARelationship", - "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd": "SupplementaryProperties" - }, - "relationshipTypeNameToGUID": { - "UsedInContext": "2dc524d2-e29f-4186-9081-72ea956c75de", - "BoundedSchemaElementType": "3e844049-e59b-45dd-8e62-cde1add59f9e", - "AttachedComment": "0d90501b-bf29-4621-a207-0c8c953bdac9", - "ZoneGovernance": "4c4d1d9c-a9fc-4305-8b71-4e891c0f9ae0", - "SolutionComponentImplementation": "d0dd0ac7-01f4-48e0-ae4d-4f7268573fa8", - "ProcessPort": "fB4E00CF-37e4-88CE-4a94-233BAdB84DA2", - "DataFieldAnalysis": "833e849d-eda2-40bb-9e6b-c3ca0b56d581", - "DeployedOn": "6932ba75-9522-4a06-a4a4-ee60a4df6aab", - "AnnotationReviewLink": "5d3c2fb7-fa04-4d77-83cb-fd9216a07769", - "SchemaTypeSnippet": "6aab4ec6-f0c6-4c40-9f50-ac02a3483358", - "ProjectCharterLink": "f081808d-545a-41cb-a9aa-c4f074a16c78", - "KnownDuplicateLink": "7540d9fb-1848-472e-baef-97a44b9f0c45", - "DataClassComposition": "767fb343-4699-49c1-a0f8-af6da78505f8", - "SchemaLinkToType": "db9583c5-4690-41e5-a580-b4e30a0242d3", - "GovernanceDriverLink": "c5e6fada-2c12-46ee-afa9-b71dd1bd8179", - "PersonalContribution": "4a316abe-eeee-4d11-ad5a-4bfb4079b80b", - "DataContentForDataSet": "b827683c-2924-4df3-a92d-7be1888e23c0", - "BusinessCapabilityControls": "b5de932a-738c-4c69-b852-09fec2b9c678", - "RegisteredIntegrationConnector": "7528bcd4-ae4c-47d0-a33f-4aeebbaa92c2", - "PortDelegation": "98bB8BA1-dc6A-eb9D-32Cf-F837bEbCbb8E", - "ServerEndpoint": "2b8bfab4-8023-4611-9833-82a0dc95f187", - "MoreInformation": "1cbf059e-2c11-4e0c-8aae-1da42c1ee73f", - "ProjectHierarchy": "8f1134f6-b9fe-4971-bc57-6e1b8b302b55", - "AnnotationExtension": "605aaa6d-682e-405c-964b-ca6aaa94be1b", - "DigitalServiceOperator": "79ac27f6-be9c-489f-a7c2-b9add0bf705c", - "ProcessCall": "af904501-6347-4f52-8378-da50e8d74828", - "APIResponse": "e8001de2-1bb1-442b-a66f-9addc3641eae", - "PeerDuplicateLink": "a94b2929-9e62-4b12-98ab-8ac45691e5bd", - "DesignModelGroupMembership": "2dcfe62b-341c-4c3d-b336-a94a52c20556", - "RelatedIntegrationReport": "83d12156-f8f3-4b4b-b31b-18c140df9aa3", - "SchemaAttributeDefinition": "60f1e263-e24d-4f20-8c0d-b5e21232cd54", - "DerivedSchemaTypeQueryTarget": "1c2622b7-ac21-413c-89e1-6f61f348cd19", - "GovernanceActionExecutor": "e690ab17-6779-46b4-a8f1-6872d88c1bbb", - "DiscoveredAnnotation": "51d386a3-3857-42e3-a3df-14a6cad08b93", - "MapToElementType": "8b9856b3-451e-45fc-afc7-fddefd81a73a", - "NestedSchemaAttribute": "0ffb9d87-7074-45da-a9b0-ae0859611133", - "SourcedFrom": "87b7371e-e311-460f-8849-08646d0d6ad3", - "TranslationLink": "576228af-33ec-4588-ba4e-6a864a097e10", - "CommunityMembership": "7c7da1a3-01b3-473e-972e-606eff0cb112", - "ExternalIdScope": "8c5b1415-2d1f-4190-ba6c-1fdd47f03269", - "RelatedKeyword": "f9ffa8a8-80f5-4e6d-9c05-a3a5e0277d62", - "AcceptedAnswer": "ecf1a3ca-adc5-4747-82cf-10ec590c5c69", - "GovernanceDefinitionMetric": "e076fbb3-54f5-46b8-8f1e-a7cb7e792673", - "SchemaQueryImplementation": "e5d7025d-8b4f-43c7-bcae-1047d650b94a", - "AssetSchemaType": "815b004d-73c6-4728-9dd9-536f4fe803cd", - "TopicSubscribers": "bc91a28c-afb9-41a7-8eb2-fc8b5271fe9e", - "OrganizationalCapability": "47f0ad39-db77-41b0-b406-36b1598e0ba7", - "ReplacementTerm": "3bac5f35-328b-4bbd-bfc9-3b3c9ba5e0ed", - "DigitalServiceImplementation": "873e29bd-ca14-4833-a6bb-9ebdf89b5b1b", - "DataFlow": "d2490c0c-06cc-458a-add2-33cf2f5dd724", - "MetadataCohortPeer": "954cdba1-3d69-4db1-bf0e-d59fd2c25a27", - "ConceptBeadRelationshipEnd": "1a379e55-a4c0-4289-a1a4-b89d257611d1", - "AttachedNoteLogEntry": "38edecc6-f385-4574-8144-524a44e3e712", - "CollectionMembership": "5cabb76a-e25b-4bb5-8b93-768bbac005af", - "AssetServerUse": "92b75926-8e9a-46c7-9d98-89009f622397", - "ApprovedPurpose": "33ec3aaa-dfb6-4f58-8d5d-c42d077be1b3", - "ContractLink": "33937ece-5ab6-4cd3-a348-b8196ffc3b4e", - "TargetForAction": "46ec49bf-af66-4575-aab7-06ce895120cd", - "ConnectorImplementationChoice": "633648f3-c951-4ad7-b975-9fc04e0f3d2e", - "DesignModelElementOwnership": "f3b18ac7-3357-4a0c-8988-77a98adad5b5", - "ProjectManagement": "ac63ac45-a4d0-4fba-b583-92859de77dd8", - "DataClassDefinition": "51a2d263-e24d-4f20-8c0d-b5e12356cd54", - "Stakeholder": "efd8a136-0aea-4668-b91a-30f947e38b82", - "GovernanceActionFlow": "5f6ddee5-31ea-4d4f-9c3f-00ad2fcb2aa0", - "SolutionComposition": "2a9e56c3-bcf6-41de-bbe9-1e63b81d3114", - "APIOperations": "03737169-ceb5-45f0-84f0-21c5929945af", - "LinkedExternalSchemaType": "9a5d78c2-1716-4783-bfc6-c300a9e2d092", - "RelationshipAnnotation": "73510abd-49e6-4097-ba4b-23bd3ef15baa", - "AssociatedGroup": "e47a19d0-7e12-4cf7-9ad7-50856da7faa2", - "GovernancePolicyLink": "0c42c999-4cac-4da4-afab-0e381f3a818e", - "ResponsibilityStaffContact": "49f2ecb5-6bf7-4324-9824-ac98d595c404", - "DiscoveredDataField": "60f2d263-e24d-4f20-8c0d-b5e22222cd54", - "SubjectAreaGovernance": "ee8c78a1-a3ae-4824-a4e1-dcb64bc3a45b", - "PersonRoleAppointment": "4a316abe-bcce-4d11-ad5a-4bfb4079b80b", - "TermTYPEDBYRelationship": "669e8aa4-c671-4ee7-8d03-f37d09b9d006", - "MapFromElementType": "6189d444-2da4-4cd7-9332-e48a1c340b44", - "ValidValueMember": "6337c9cd-8e5a-461b-97f9-5151bcb97a9e", - "SchemaTypeDefinition": "60f2d263-e24d-4f20-8c0d-b5e24648cd54", - "GovernanceResponsibilityAssignment": "cb15c107-b7af-475d-aab0-d78b8297b982", - "Synonym": "74f4094d-dba2-4ad9-874e-d422b69947e2", - "TermISATypeOFRelationship": "d5d588c3-46c9-420c-adff-6031802a7e51", - "SchemaTypeOption": "eb4f1f98-c649-4560-8a46-da17c02764a9", - "DataProcessingSpecification": "1dfdec0f-f206-4db7-bac8-ec344205fb3c", - "EmbeddedConnection": "eb6dfdd2-8c6f-4f0d-a17d-f6ce4799f64f", - "DesignModelGroupOwnership": "4a985162-8130-4559-b68e-6e6a5dc19c2a", - "ConnectionToAsset": "e777d660-8dbe-453e-8b83-903771f054c0", - "RegulationCertificationType": "be12ff15-0721-4a7e-8c98-334eaa884bdf", - "GovernanceActionRequestSource": "5323a705-4c1f-456a-9741-41fdcb8e93ac", - "GovernanceRuleImplementation": "e701a5c8-c1ba-4b75-8257-e0a6569eda48", - "IsATypeOfRelationship": "9b6a91b5-a339-4245-b208-040805f95a75", - "ServerAssetUse": "56315447-88a6-4235-ba91-fead86524ebf", - "SchemaTypeImplementation": "eed5565d-7ac2-46fe-9a26-4722fad8d993", - "RelatedTerm": "b1161696-e563-4cf9-9fd9-c0c76e47d063", - "GovernanceActionTypeExecutor": "f672245f-35b5-4ca7-b645-014cf61d5b75", - "APIHeader": "e8fb46d1-5f75-481b-aa66-f43ad44e2cc6", - "LibraryTermReference": "38c346e4-ddd2-42ef-b4aa-55d53c078d22", - "InformationSupplyChainImplementation": "94715275-0520-43e9-81fe-4fe8ec3d8f3a", - "ImplementedBy": "28f63c94-aaef-4c84-98f7-d77aa605272e", - "GovernanceProcessImplementation": "a5a7b08a-73fd-4026-a9dd-d0fe55bea8a4", - "OperatingPlatformManifest": "e5bd6acf-932c-4d9c-85ff-941a8e4451db", - "ITInfrastructureProfile": "4c579e3d-a4ff-41c1-9931-33e6fc992f2b", - "GroupedMedia": "7d881574-461d-475c-ab44-077451528cb8", - "NestedFile": "4cb88900-1446-4eb6-acea-29cd9da45e63", - "HostOperatingPlatform": "b9179df5-6e23-4581-a8b0-2919e6322b12", - "TermAnchor": "1d43d661-bdc7-4a91-a996-3239b8f82e56", - "ForeignKey": "3cd4e0e7-fdbf-47a6-ae88-d4b3205e0c07", - "DesignModelGroupHierarchy": "809b7c6c-69f9-4dbf-a5dd-085664499438", - "DiscoveryEngineReport": "2c318c3a-5dc2-42cd-a933-0087d852f67f", - "APIRequest": "4ab3b466-31bd-48ea-8aa2-75623476f2e2", - "SoftwareServerDeployment": "d909eb3b-5205-4180-9f63-122a65b30738", - "CohortMemberMetadataCollection": "8b9dd3ea-057b-4709-9b42-f16098523907", - "ReferenceableFacet": "58c87647-ada9-4c90-a3c3-a40ace46b1f7", - "RelatedDesignPattern": "6447c9cd-8e5a-461b-97f9-5151bcb97a9e", - "DigitalServiceDependency": "e8303911-ba1c-4640-974e-c4d57ee1b310", - "NextGovernanceActionType": "d9567840-9904-43a5-990b-4585c0446e00", - "ContactThrough": "6cb9af43-184e-4dfa-854a-1572bcf0fe75", - "License": "35e53b7f-2312-4d66-ae90-2d4cb47901ee", - "SoftwareServerPlatformDeployment": "b909eb3b-5205-4180-9f63-122a65b30738", - "FolderHierarchy": "48ac9028-45dd-495d-b3e1-622685b54a01", - "HostClusterMember": "1a1c3933-a583-4b0c-9e42-c3691296a8e0", - "LibraryCategoryReference": "3da21cc9-3cdc-4d87-89b5-c501740f00b2", - "ZoneHierarchy": "ee6cf469-cb4d-4c3b-a4c7-e2da1236d139", - "OperatingPlatformUse": "0943e0ba-73ac-476b-8ebe-2ef30ba44976", - "DigitalServiceProduct": "51465a59-c785-406d-929c-def34596e9af", - "ConceptBeadAttributeLink": "5bad1df2-664b-407b-8036-2855e2ede92f", - "AttachedStorage": "2cf1e949-7189-4bf2-8ee4-e1318e59abd7", - "ProfileIdentity": "01664609-e777-4079-b543-6baffe910ff1", - "ToDoSource": "a0b7ba50-4c97-4b76-9a7d-c6a00e1be646", - "SolutionPortDelegation": "8335e6ed-fd86-4000-9bc5-5203062f28ba", - "Translation": "6ae42e95-efc5-4256-bfa8-801140a29d2a", - "DataProcessingTarget": "6ad18aa4-f5fc-47e7-99e1-80acfc536c9a", - "SubjectAreaHierarchy": "fd3b7eaf-969c-4c26-9e1e-f31c4c2d1e4b", - "DiscoveredNestedDataField": "60f2d263-e24d-4f20-8c0d-b5e12356cd54", - "ReferenceValueAssignment": "111e6d2e-94e9-43ed-b4ed-f0d220668cbf", - "Actions": "aca1277b-bf1c-42f5-9b3b-fbc2c9047325", - "TeamMembership": "1ebc4fb2-b62a-4269-8f18-e9237a2119ca", - "SoftwarePackageDependency": "2c05beaf-e313-47f8-ac18-2298140b2ad9", - "TeamLeadership": "5ebc4fb2-b62a-4269-8f18-e9237a2119ca", - "SolutionLinkingWire": "892a3d1c-cfb8-431d-bd59-c4d38833bfb0", - "ControlFlow": "35450726-1c32-4d41-b928-22db6d1ae2f4", - "DiscoveryInvocationReport": "1744d72b-903d-4273-9229-de20372a17e2", - "SolutionPortSchema": "bf02c703-57a2-4ab7-b6db-f49b57b05985", - "AssociatedSnippet": "6f89c320-22aa-4d99-9a97-442e8d214655", - "ExternalIdLink": "28ab0381-c662-4b6d-b787-5d77208de126", - "ResourceList": "73cf5658-6a73-4ebc-8f4d-44fdfac0b437", - "CategoryHierarchyLink": "71e4b6fb-3412-4193-aff3-a16eccd87e8e", - "PreferredTerm": "8ac8f9de-9cdd-4103-8a33-4cb204b78c2a", - "DeployedVirtualContainer": "4b981d89-e356-4d9b-8f17-b3a8d5a86676", - "SolutionBlueprintComposition": "f1ae975f-f11a-467b-8c7a-b023081e4712", - "DataClassHierarchy": "6b947ccc-1a70-4785-9ca3-d6326bc51291", - "DesignModelImplementation": "c5cb1362-07f6-486b-b80b-ba7922cacee9", - "GovernanceResults": "89c3c695-9e8d-4660-9f44-ed971fd55f88", - "DesignModelElementsInScope": "4ff6d91b-3836-4ba2-9ca9-87da91081faa", - "HostNetwork": "f2bd7401-c064-41ac-862c-e5bcdc98fa1e", - "AttributeForSchema": "86b176a2-015c-44a6-8106-54d5d69ba661", - "AssetLocation": "bc236b62-d0e6-4c5c-93a1-3a35c3dba7b1", - "SoftwareServerSupportedCapability": "8b7d7da5-0668-4174-a43b-8f8c6c068dd0", - "IncidentDependency": "017be6a8-0037-49d8-af5d-c45c41f25e0b", - "SchemaAttributeType": "2d955049-e59b-45dd-8e62-cde1add59f9e", - "GovernanceImplementation": "787eaf46-7cf2-4096-8d6e-671a0819d57e", - "LinkedMedia": "cee3a190-fc8d-4e53-908a-f1b9689581e0", - "AssignmentScope": "e3fdafe3-692a-46c6-a595-c538cc189dd9", - "ValidValuesImplementation": "d9a39553-6a47-4477-a217-844300c07cf2", - "AssociatedLog": "0999e2b9-45d6-42c4-9767-4b74b0b48b89", - "ExternallySourcedGlossary": "7786a39c-436b-4538-acc7-d595b5856add", - "ExternalReferenceLink": "7d818a67-ab45-481c-bc28-f6b1caf12f06", - "MediaReference": "1353400f-b0ab-4ab9-ab09-3045dd8a7140", - "ValidValue": "707a156b-e579-4482-89a5-de5889da1971", - "ExecutionPointUse": "3eb268f4-9419-4281-a487-d25ccd88eba3", - "AgreementItem": "a540c361-0ed1-45d6-b525-007592ae806d", - "GovernanceActionTypeUse": "31e734ec-5baf-4e96-9f0d-e8a85081cb14", - "TeamStructure": "5ebc4fb2-b62a-4269-8f18-e9237a2229ca", - "NextGovernanceAction": "4efd16d4-f397-449c-a75d-ebea42fe581b", - "ProjectDependency": "5b6a56f1-68e2-4e10-85f0-fda47a4263fd", - "DetailedProcessingActions": "0ac0e793-6727-45d2-9403-06bd19d9ce2e", - "AttachedTermsAndConditions": "8292343f-6a96-4ca8-a447-38f734c75634", - "InformationSupplyChainLink": "207e5130-ab7c-4048-9249-a63a43c13d60", - "GovernedBy": "89c3c695-9e8d-4660-9f44-ed971fd55f89", - "DigitalSupport": "9e187e1e-2547-46bd-b0ee-c33ac6df4a1f", - "RuntimeForProcess": "f6b5cf4f-7b88-47df-aeb0-d80d28ba1ec1", - "SupportedDiscoveryService": "dff45aeb-c65e-428c-9ab3-d756bc5d8dbb", - "NestedLocation": "f82a96c2-95a3-4223-88c0-9cbf2882b772", - "ProfileLocation": "4d652ef7-99c7-4ec3-a2fd-b10c0a1ab4b4", - "LinkedFile": "970a3405-fde1-4039-8249-9aa5f56d5151", - "TermCategorization": "696a81f5-ac60-46c7-b9fd-6979a1e7ad27", - "APIEndpoint": "de5b9501-3ad4-4803-a8b2-e311c72a4336", - "VisibleEndpoint": "5e1722c7-0167-49a0-bd77-fbf9dc5eb5bb", - "LastAttachmentLink": "57e3687e-393e-4c0c-a4f1-a6634075465b", - "ConnectionEndpoint": "887a7132-d6bc-4b92-a483-e80b60c86fb2", - "CategoryAnchor": "c628938e-815e-47db-8d1c-59bb2e84e028", - "SupportedSoftwareCapability": "2480aa71-44c5-414d-8b32-9c4340786d77", - "ProjectTeam": "746875af-2e41-4d1f-864b-35265df1d5dc", - "ProcessOutput": "e3e40f99-70fe-478c-9676-78a50cded70b", - "LineageMapping": "a5991bB2-660D-A3a1-2955-fAcDA2d5F4Ff", - "ValidValuesAssignment": "c5d48b73-eadd-47db-ab64-3be99b2fb32d", - "Peer": "4a316abe-bccd-4d11-ad5a-4bfb4079b80b", - "ActionAssignment": "af2b5fab-8f83-4a2b-b749-1e6219f61f79", - "DigitalServiceDesign": "a43b4c9c-52c2-4819-b3cc-9d07d49a11f2", - "Certification": "390559eb-6a0c-4dd7-bc95-b9074caffa7f", - "ConsolidatedDuplicateLink": "a1fabffd-d6ec-4b2d-bfe4-646f27c07c82", - "NetworkGatewayLink": "5bece460-1fa6-41fb-a29f-fdaf65ec8ce3", - "ConnectionConnectorType": "e542cfc1-0b4b-42b9-9921-f0a5a88aaf96", - "Antonym": "ea5e126a-a8fa-4a43-bcfa-309a98aa0185", - "GraphEdgeLink": "503b4221-71c8-4ba9-8f3d-6a035b27971c", - "GlossaryTermEvolution": "b323c9cf-f254-49c7-a391-11222e9da70f", - "SupportedGovernanceService": "2726df0e-4f3a-44e1-8433-4ca5301457fd", - "DigitalServiceManagement": "91ff7542-c275-4cd3-b367-97eec3360422", - "ProjectScope": "bc63ac45-b4d0-4fba-b583-92859de77dd8", - "ISARelationship": "50fab7c7-68bc-452f-b8eb-ec76829cac85", - "Meetings": "a05f918e-e7e2-419d-8016-5b37406df63a", - "SearchKeywordLink": "d2f8df24-6905-49b8-b389-31b2da156ece", - "GovernanceControlLink": "806933fb-7925-439b-9876-922a960d2ba1", - "DesignModelOwnership": "d57043c2-eeab-4167-8d0d-2223af8aee93", - "AttachedRating": "0aaad9e9-9cc5-4ad8-bc2e-c1099bab6344", - "DataClassAssignment": "4df37335-7f0c-4ced-82df-3b2fd07be1bd", - "AttachedNoteLog": "4f798c0c-6769-4a2d-b489-d2714d89e0a4", - "LinkedType": "292125f7-5660-4533-a48a-478c5611922e", - "CrowdSourcingContribution": "4db83564-b200-4956-94a4-c95a5c30e65a", - "InformationSupplyChainComposition": "fcdccfa3-e9f0-4543-8720-1958799fb6dc", - "ProcessHierarchy": "70dbbda3-903f-49f7-9782-32b503c43e0e", - "AdjacentLocation": "017d0518-fc25-4e5e-985e-491d91e61e17", - "SemanticAssignment": "e6670973-645f-441a-bec7-6f5570345b92", - "HostLocation": "f3066075-9611-4886-9244-32cc6eb07ea9", - "ProcessInput": "d1a9a79f-4c9c-4dff-837e-1353ba51b607", - "AgreementActor": "1c811d0b-e9ce-44af-b6ed-133e73322e32", - "IncidentOriginator": "e490772e-c2c5-445a-aea6-1aab3499a76c", - "PortSchema": "B216fA00-8281-F9CC-9911-Ae6377f2b457", - "AttachedTag": "4b1641c4-3d1a-4213-86b2-d6968b6c65ab", - "TermHASARelationship": "d67f16d1-5348-419e-ba38-b0bb6fe4ad6c", - "ActionTarget": "207e2594-e3e4-4be8-a12c-4c401656e241", - "GovernanceResponse": "8845990e-7fd9-4b79-a19d-6c4730dadd6b", - "SolutionComponentPort": "5652d03a-f6c9-411a-a3e4-f490d3856b64", - "ValidValuesMapping": "203ce62c-3cbf-4542-bf82-81820cba718f", - "GovernanceDefinitionScope": "3845b5cc-8c85-462f-b7e6-47472a568793", - "DataProfileLogFile": "75026fac-f9e5-4da8-9ad1-e9c68d47f577", - "ImpactedResource": "0908e153-e0fd-499c-8a30-5ea8b81395cd", - "GovernanceRoleAssignment": "cb10c107-b7af-475d-aab0-d78b8297b982", - "AssetDiscoveryReport": "7eded424-f176-4258-9ae6-138a46b2845f", - "AttachedLike": "e2509715-a606-415d-a995-61d00503dad4", - "NoteLogAuthorship": "8f798c0c-6769-4a2d-b489-12714d89e0a4", - "SupplementaryProperties": "2bb10ba5-7aa2-456a-8b3a-8fdbd75c95cd", - "PermittedProcessing": "b472a2ec-f419-4d3f-86fb-e9d97365f961", - "DigitalSubscriber": "567cc4e7-ef89-4d36-af0d-3cb4fe9b8cf4", - "CatalogTarget": "bc5a5eb1-881b-4055-aa2c-78f314282ac2" - } - } -}; - - - export const mockData = { - nodes: [...Object.keys(data.typeExplorer.entities).map((e) => { - return { - id: data.typeExplorer.entities[e].entityDef.guid, - label: e, - group: 'Port', - guid: data.typeExplorer.entities[e].entityDef.guid, - properties: { - // class: data.typeExplorer.entities[e].entityDefclass, - // headerVersion: data.typeExplorer.entities[e].entityDefheaderVersion, - // guid: data.typeExplorer.entities[e].entityDefguid, - // name: data.typeExplorer.entities[e].entityDefname, - // status: data.typeExplorer.entities[e].entityDefstatus - } - }; - })], - edges: [ - ...Object.keys(data.typeExplorer.entities).filter((e) => { - if(data.typeExplorer.entities[e].entityDef.superType) { - return true; - } else { - return false; - } - }).map((e) => { - return { - id: `${data.typeExplorer.entities[e].entityDef.guid}-${data.typeExplorer.entities[e].entityDef.superType.guid}`, - to: data.typeExplorer.entities[e].entityDef.guid, - from: data.typeExplorer.entities[e].entityDef.superType.guid, - label: 'Label', - type: null - } - }) + nodes:[ + {"id":"1","label":"Node 1","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Relational Table::(database_column)=Database Column"}, + {"id":"2","label":"Node 2","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, + {"id":"3","label":"Node 3","group":"RelationalTable","properties":{"schema":"Schema","database":"Database"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table"}, + {"id":"4","label":"Node 4","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Schema::(database_table)=Database Table::(database_column)=Database Column"}, + {"id":"5","label":"Node 5","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category"}, + {"id":"6","label":"Node 6","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category"}, + {"id":"7","label":"Node 7","group":"RelationalColumn","properties":{"schema":"Schema","database":"Database","relationalTable":"Relational Table"},"level":0,"qualifiedName":"(host)=Host::(database)=Database::(database_schema)=Database Schema::(database_table)=Database Table::(database_column)=Database Column"}, + {"id":"8","label":"Node 8","group":"GlossaryTerm","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Glossary::(category)=TEST::(term)=test_egeria"}, + {"id":"9","label":"Node 9","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data file Field"}, + {"id":"10","label":"Node 10","group":"TabularFileColumn","properties":{"schema":"Schema"},"level":0,"qualifiedName":"(host)=Host::(data_file)=Data_File.txt::(data_file_record)=Data File Record::(data_file_field)=Data File Field"}, + {"id":"11","label":"Node 11","group":"GlossaryCategory","properties":{"glossary":"Glossary"},"level":0,"qualifiedName":"(category)=Category::(category)=Category::(category)=Category::(category)=Category"} + ], + edges:[ + {"id":"4-8","from":"8","to":"4","label":"SemanticAssignment","type":null}, + {"id":"7-8","from":"8","to":"7","label":"SemanticAssignment","type":null}, + {"id":"1-8","from":"8","to":"1","label":"SemanticAssignment","type":null}, + {"id":"8-11","from":"8","to":"11","label":"TermCategorization","type":"ReferencingCategory"}, + {"id":"8-2","from":"8","to":"2","label":"TermCategorization","type":"ReferencingCategory"}, + {"id":"3-8","from":"8","to":"3","label":"SemanticAssignment","type":null}, + {"id":"8-6","from":"8","to":"6","label":"TermCategorization","type":"ReferencingCategory"}, + {"id":"10-8","from":"8","to":"10","label":"SemanticAssignment","type":null}, + {"id":"9-8","from":"8","to":"9","label":"SemanticAssignment","type":null}, + {"id":"8-5","from":"8","to":"5","label":"TermCategorization","type":"PrimaryCategory"} ] -}; \ No newline at end of file +}; + From 8f049759d9f69fe4eb40afc8e1e1efaac4c5d751 Mon Sep 17 00:00:00 2001 From: habib Date: Fri, 2 Jun 2023 15:33:36 +0100 Subject: [PATCH 5/8] Git 150 Split the graph type selection into a seperate method --- .../HappiGraph/happi-graph.component.tsx | 57 ++++++++++--------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/src/components/HappiGraph/happi-graph.component.tsx b/src/components/HappiGraph/happi-graph.component.tsx index 8cd1854..9ab35a9 100644 --- a/src/components/HappiGraph/happi-graph.component.tsx +++ b/src/components/HappiGraph/happi-graph.component.tsx @@ -63,33 +63,14 @@ interface State { customZoomOut: any; initCenterGraph: any; graphType: number; - } - class HappiGraph extends React.Component { constructor(props: Props) { super(props); const mappedNodes = mapNodes(props.rawData.nodes, props.selectedNodeId); const mappedLinks = mapLinks(props.rawData.edges, mappedNodes); - let selectedGraphType; - switch(props.graphType) { - case GraphType.LINEAGE: { - selectedGraphType=LineageRender; - break; - } - case GraphType.TEX_INHERITANCE: { - selectedGraphType=TexInheritanceRender; - break; - } - case GraphType.TEX_NEIGHBOURHOOD: { - selectedGraphType=TexNeighbourhoodRender; - break; - } - default: - selectedGraphType=LineageRender - console.log('GRAPH_TYPE_NOT_SELECTED'); - } + this.state = { algorithm: props.algorithm ? props.algorithm : 'ELK', rawData: { ...props.rawData }, @@ -108,16 +89,36 @@ class HappiGraph extends React.Component { allGroup: null, isFullscreen: false, printMode: props.printMode ? true : false, - addLinks: selectedGraphType.addLinks, - addNodes: selectedGraphType.addNodes, - centerGraph: selectedGraphType.centerGraph, - customZoomIn: selectedGraphType.customZoomIn, - customZoomOut: selectedGraphType.customZoomOut, - initCenterGraph: selectedGraphType.initCenterGraph, + addLinks: this.selectGraphType(props.graphType).addLinks, + addNodes: this.selectGraphType(props.graphType).addNodes, + centerGraph: this.selectGraphType(props.graphType).centerGraph, + customZoomIn: this.selectGraphType(props.graphType).customZoomIn, + customZoomOut: this.selectGraphType(props.graphType).customZoomOut, + initCenterGraph: this.selectGraphType(props.graphType).initCenterGraph, graphType: props.graphType }; + } - + selectGraphType = (type: number): any => { + let selectedGraphType; + switch(type) { + case GraphType.LINEAGE: { + selectedGraphType=LineageRender; + break; + } + case GraphType.TEX_INHERITANCE: { + selectedGraphType=TexInheritanceRender; + break; + } + case GraphType.TEX_NEIGHBOURHOOD: { + selectedGraphType=TexNeighbourhoodRender; + break; + } + default: + selectedGraphType=LineageRender + console.log('GRAPH_TYPE_NOT_SELECTED'); + } + return selectedGraphType; } selectAlgorithm(callback: any) { @@ -242,7 +243,7 @@ class HappiGraph extends React.Component { .on('dblclick.zoom', null); this.state.addNodes(nodes, nodesGroup, graphDirection, onNodeClick); - TexInheritanceRender.addLinks(links, linksGroup, graphDirection, nodes); + this.state.addLinks(links, linksGroup, graphDirection, nodes); this.state.initCenterGraph(allGroup, svg, zoom, callback); }); From 617173c01d2192ba9c9a7c73f9b3b8e24f4eb42a Mon Sep 17 00:00:00 2001 From: habib Date: Tue, 6 Jun 2023 18:57:48 +0100 Subject: [PATCH 6/8] Git 150 removed duplicate code --- .../HappiGraph/Tex/tex-inheritance.render.ts | 303 +---------------- .../Tex/tex-neighbourhood.render.ts | 304 +----------------- .../HappiGraph/happi-graph.component.tsx | 66 ++-- .../HappiGraph/happi-graph.render.ts | 2 +- 4 files changed, 43 insertions(+), 632 deletions(-) diff --git a/src/components/HappiGraph/Tex/tex-inheritance.render.ts b/src/components/HappiGraph/Tex/tex-inheritance.render.ts index ed2595b..92a250b 100644 --- a/src/components/HappiGraph/Tex/tex-inheritance.render.ts +++ b/src/components/HappiGraph/Tex/tex-inheritance.render.ts @@ -1,138 +1,7 @@ import * as d3 from 'd3'; -import { iconsMap, linksTypeIconMap, itemGroupIconMap } from "@lfai/egeria-js-commons"; - -export const simpleSquareIcon = ``; - -export const addProperties = (nodeGroup: any) => { - nodeGroup.each(function (d: any) { - // @ts-ignore - d3.select(this) - .call(function (selection: any) { - if (d.properties) { - let labelHeight = 80; - let iconHeight = 80; - const PROPERTY_MAX_LENGTH = 20; - - for (const p of d.properties) { - const propertyGroup = selection.append('g').classed('property-group', true); - - const property = propertyGroup - .append('text') - .attr('transform', `translate(95, ${labelHeight})`) - .attr('data-text-length', p.value.length) - .attr('data-label-height', labelHeight) - .attr('data-value', p.value) - .classed('property', true) - .text(() => p.value.length > PROPERTY_MAX_LENGTH ? `${p.value.substring(0, PROPERTY_MAX_LENGTH)}...` : p.value); - - property - .on('mouseover', function (d: any) { - const currentNode = d3.select(d.currentTarget); - - const textLength = parseInt(currentNode.attr('data-text-length')); - - if(textLength > PROPERTY_MAX_LENGTH) { - const dataLabelHeight = parseInt(currentNode.attr('data-label-height')); - const value = currentNode.attr('data-value'); - - const fullPropertyBackground = d3.select(d.currentTarget.parentNode) - .append('rect') - .classed('full-property-background', true) - .attr('transform', `translate(70, ${dataLabelHeight - 40})`); - - const fullProperty: any = d3.select(d.currentTarget.parentNode) - .append('text') - .classed('full-property', true) - .attr('transform', `translate(78, ${dataLabelHeight - 32})`) - .text(() => value); - - const localBBox = fullProperty.node().getBBox(); - - fullPropertyBackground.attr('x', localBBox.x) - .attr('y', localBBox.y) - .attr('width', localBBox.width + 18) - .attr('height', localBBox.height + 16) - .attr('rx', 10) - .attr('ry', 10); - } - }) - .on('mouseout', function (d: any) { - const currentNode = d3.select(d.currentTarget); - - const textLength = parseInt(currentNode.attr('data-text-length')); - - if(textLength > 10) { - d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property-background')[0]).remove(); - d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property')[0]).remove(); - } - }); - - const icon = new DOMParser() - .parseFromString( - iconsMap[p.icon] ? iconsMap[p.icon] : iconsMap['simple-square'], - 'application/xml' - ) - .documentElement; - - // @ts-ignore: Object is possibly 'null'. - propertyGroup - .append('g') - .attr('transform', `translate(65, ${iconHeight - 15})`) - .classed('property-icon', true) - .node() - .append(icon); - - iconHeight = iconHeight + 30; - - labelHeight = labelHeight + 30; - } - } - }); - }); -}; - -export const addIcon = (nodeGroup: any, iconsMap: any) => { - nodeGroup - .append('path') - .attr('transform', `translate(20,17)`) - .attr('d', 'M40.5566 15.6865C41.4498 17.2335 41.4498 19.1395 40.5566 20.6865L32.9434 33.8731C32.0502 35.4201 30.3996 36.3731 28.6132 36.3731H13.3868C11.6004 36.3731 9.94979 35.4201 9.05662 33.8731L1.44338 20.6865C0.550212 19.1395 0.550212 17.2335 1.44338 15.6865L9.05662 2.5C9.94979 0.952994 11.6004 0 13.3868 0H28.6132C30.3996 0 32.0502 0.952995 32.9434 2.5L40.5566 15.6865Z') - .attr('fill', '#5C82EB'); - - nodeGroup.each(function (d: any) { - const icon = new DOMParser() - .parseFromString( - iconsMap[d.type] ? iconsMap[d.type] : simpleSquareIcon, - 'application/xml' - ) - .documentElement; - - // @ts-ignore: Object is possibly 'null'. - d3.select(this) - .append('g') - .attr('transform', `translate(31,25)`) - .node() - .append(icon); - }) -}; - -const isSelected = (nodeGroup: any) => { - nodeGroup - .append('path') - .classed('pin', true) - .attr('d', (d: any) => { - if (d.selected) { - return 'M7 2h10v2l-2 1v5l3 3v3h-5v4l-1 3l-1-3v-4H6v-3l3-3V5L7 4z'; - } else { - return ''; - } - }) - .attr('transform', (d: any) => { - const x = d.width - 25; - const y = 5; +import {addIcon, getLinkCoordinates, isSelected, addProperties} from "../happi-graph.render" +import { iconsMap, linksTypeIconMap } from "@lfai/egeria-js-commons"; - return `translate(${x} ${y}) rotate(30 0 0)`; - }); -}; const addHeader = (nodeGroup: any) => { const header = nodeGroup @@ -190,11 +59,6 @@ const addHeader = (nodeGroup: any) => { d3.select(d.currentTarget.parentNode.getElementsByClassName('full-header')[0]).remove(); } }); - - // header.append('text') - // .attr('transform', `translate(70, 50)`) - // .classed('label', true) - // .text((d: any) => d.label); }; const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeClick?: any) => { @@ -300,159 +164,6 @@ const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeCli addProperties(nodeGroup); }; - -const centerToCoordinates = function (data: any, scaledBy: any, svg: any, zoom: any, callback: any) { - const { x, y, width, height } = data; - - const svgWidth = parseInt(svg.style('width')); - const svgHeight = parseInt(svg.style('height')); - - const svgCenter = { - x: svgWidth / 2, - y: svgHeight / 2 - }; - - svg.transition() - .call( - zoom.transform, - d3.zoomIdentity - .translate( - svgCenter.x - ((x * scaledBy) + (width * scaledBy) / 2), - svgCenter.y - ((y * scaledBy) + (height * scaledBy) / 2) - ) - .scale(scaledBy) - ).on('end', () => { - callback(); - }); -} - -const initCenterGraph = (allGroup: any, svg: any, zoom: any, callback: any) => { - centerGraph(allGroup, svg, zoom, callback); -} - -const centerGraph = (allGroup: any, svg: any, zoom: any, callback?: any) => { - const graphBBox = allGroup.node().getBBox(); - - const svgWidth = parseInt(svg.style('width')); - const svgHeight = parseInt(svg.style('height')); - - const data = { - x: graphBBox.x, - y: graphBBox.y, - width: graphBBox.width, - height: graphBBox.height - }; - - const scaledBy = Math.min( - (svgWidth - 100) / graphBBox.width, - (svgHeight - 100) / graphBBox.height, - 1 - ); - - centerToCoordinates(data, scaledBy, svg, zoom, callback || (() => { console.log('CENTERED')})); -} - -const customZoom = (value: number, zoom: any, svg: any) => { - if (value > 0) { - zoom.scaleBy(svg.transition(), 1.3); - } else { - zoom.scaleBy(svg.transition(), 0.7); - } -}; - -const customZoomIn = (zoom: any, svg: any) => { - customZoom(1, zoom, svg); -}; - -const customZoomOut = (zoom: any, svg: any) => { - customZoom(-1, zoom, svg); -}; - -export const relativeTo = (nodeA: any, nodeB: any, graphDirection: string) => { - const a = { - x1: nodeA.x, - y1: nodeA.y, - x2: nodeA.x + nodeA.width, - y2: nodeA.y + nodeA.height - }; - - const b = { - x1: nodeB.x, - y1: nodeB.y, - x2: nodeB.x + nodeB.width, - y2: nodeB.y + nodeB.height - }; - - if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'RIGHT', b: 'LEFT' }; - } - - if((a.x1 < b.x2) && !(a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { - return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'RIGHT', b: 'LEFT' }; - } - - if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { - return { a: 'RIGHT', b: 'LEFT' }; - } - - if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { - return { a: 'BOTTOM', b: 'TOP' }; - } - - if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { - return { a: 'LEFT', b: 'RIGHT' }; - } - - if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'LEFT', b: 'RIGHT' }; - } - - if(!(a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { - return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'LEFT', b: 'RIGHT' }; - } - - if((a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'TOP', b: 'BOTTOM' }; - } - - if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'RIGHT', b: 'RIGHT' }; - } - - return null; -}; - -export const getNodeAnchorPoint = (node: any, point: any) => { - const { width, height } = node; - - switch(point) { - case 'TOP': - return { x: node.x + (width / 2), y: node.y }; - case 'BOTTOM': - return { x: node.x + (width / 2), y: node.y + height }; - case 'LEFT': - return { x: node.x, y: node.y + (height / 2)}; - case 'RIGHT': - return { x: node.x + width, y: node.y + (height / 2)}; - default: - console.log('WRONG_ANCHOR_POINT_SELECTED'); - return null; - } -}; - -export const getLinkCoordinates = (nodeA: any, nodeB: any, graphDirection: string) => { - const _relativeTo: any = relativeTo(nodeA, nodeB, graphDirection); - - - const from: any = getNodeAnchorPoint(nodeA, _relativeTo.a); - const to: any = getNodeAnchorPoint(nodeB, _relativeTo.b); - - return { - from: { x: from.x, y: from.y }, - to: { x: to.x, y: to.y } - }; -}; - const addLinks = (links: any, linksGroup: any, graphDirection: string, nodes: any) => { const _linksGroup = linksGroup.selectAll() .data(links) @@ -553,13 +264,5 @@ const addLinks = (links: any, linksGroup: any, graphDirection: string, nodes: an export { addNodes, - addLinks, - centerGraph, - initCenterGraph, - customZoom, - customZoomIn, - customZoomOut, - linksTypeIconMap, - iconsMap, - itemGroupIconMap + addLinks } diff --git a/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts b/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts index 50b26bc..f01b20c 100644 --- a/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts +++ b/src/components/HappiGraph/Tex/tex-neighbourhood.render.ts @@ -1,139 +1,7 @@ import * as d3 from 'd3'; +import {addIcon, getLinkCoordinates, isSelected, addProperties} from "../happi-graph.render" import { iconsMap, linksTypeIconMap, itemGroupIconMap } from "@lfai/egeria-js-commons"; -export const simpleSquareIcon = ``; - -export const addProperties = (nodeGroup: any) => { - nodeGroup.each(function (d: any) { - // @ts-ignore - d3.select(this) - .call(function (selection: any) { - if (d.properties) { - let labelHeight = 80; - let iconHeight = 80; - const PROPERTY_MAX_LENGTH = 20; - - for (const p of d.properties) { - const propertyGroup = selection.append('g').classed('property-group', true); - - const property = propertyGroup - .append('text') - .attr('transform', `translate(95, ${labelHeight})`) - .attr('data-text-length', p.value.length) - .attr('data-label-height', labelHeight) - .attr('data-value', p.value) - .classed('property', true) - .text(() => p.value.length > PROPERTY_MAX_LENGTH ? `${p.value.substring(0, PROPERTY_MAX_LENGTH)}...` : p.value); - - property - .on('mouseover', function (d: any) { - const currentNode = d3.select(d.currentTarget); - - const textLength = parseInt(currentNode.attr('data-text-length')); - - if(textLength > PROPERTY_MAX_LENGTH) { - const dataLabelHeight = parseInt(currentNode.attr('data-label-height')); - const value = currentNode.attr('data-value'); - - const fullPropertyBackground = d3.select(d.currentTarget.parentNode) - .append('rect') - .classed('full-property-background', true) - .attr('transform', `translate(70, ${dataLabelHeight - 40})`); - - const fullProperty: any = d3.select(d.currentTarget.parentNode) - .append('text') - .classed('full-property', true) - .attr('transform', `translate(78, ${dataLabelHeight - 32})`) - .text(() => value); - - const localBBox = fullProperty.node().getBBox(); - - fullPropertyBackground.attr('x', localBBox.x) - .attr('y', localBBox.y) - .attr('width', localBBox.width + 18) - .attr('height', localBBox.height + 16) - .attr('rx', 10) - .attr('ry', 10); - } - }) - .on('mouseout', function (d: any) { - const currentNode = d3.select(d.currentTarget); - - const textLength = parseInt(currentNode.attr('data-text-length')); - - if(textLength > 10) { - d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property-background')[0]).remove(); - d3.select(d.currentTarget.parentNode.getElementsByClassName('full-property')[0]).remove(); - } - }); - - const icon = new DOMParser() - .parseFromString( - iconsMap[p.icon] ? iconsMap[p.icon] : iconsMap['simple-square'], - 'application/xml' - ) - .documentElement; - - // @ts-ignore: Object is possibly 'null'. - propertyGroup - .append('g') - .attr('transform', `translate(65, ${iconHeight - 15})`) - .classed('property-icon', true) - .node() - .append(icon); - - iconHeight = iconHeight + 30; - - labelHeight = labelHeight + 30; - } - } - }); - }); -}; - -export const addIcon = (nodeGroup: any, iconsMap: any) => { - nodeGroup - .append('path') - .attr('transform', `translate(20,17)`) - .attr('d', 'M40.5566 15.6865C41.4498 17.2335 41.4498 19.1395 40.5566 20.6865L32.9434 33.8731C32.0502 35.4201 30.3996 36.3731 28.6132 36.3731H13.3868C11.6004 36.3731 9.94979 35.4201 9.05662 33.8731L1.44338 20.6865C0.550212 19.1395 0.550212 17.2335 1.44338 15.6865L9.05662 2.5C9.94979 0.952994 11.6004 0 13.3868 0H28.6132C30.3996 0 32.0502 0.952995 32.9434 2.5L40.5566 15.6865Z') - .attr('fill', '#5C82EB'); - - nodeGroup.each(function (d: any) { - const icon = new DOMParser() - .parseFromString( - iconsMap[d.type] ? iconsMap[d.type] : simpleSquareIcon, - 'application/xml' - ) - .documentElement; - - // @ts-ignore: Object is possibly 'null'. - d3.select(this) - .append('g') - .attr('transform', `translate(31,25)`) - .node() - .append(icon); - }) -}; - -const isSelected = (nodeGroup: any) => { - nodeGroup - .append('path') - .classed('pin', true) - .attr('d', (d: any) => { - if (d.selected) { - return 'M7 2h10v2l-2 1v5l3 3v3h-5v4l-1 3l-1-3v-4H6v-3l3-3V5L7 4z'; - } else { - return ''; - } - }) - .attr('transform', (d: any) => { - const x = d.width - 25; - const y = 5; - - return `translate(${x} ${y}) rotate(30 0 0)`; - }); -}; - const addHeader = (nodeGroup: any) => { const header = nodeGroup .append('g') @@ -141,7 +9,7 @@ const addHeader = (nodeGroup: any) => { const textHeader = header.append('text') - .attr('transform', `translate(70, 30)`) + .attr('transform', `translate(70, 40)`) .attr('data-text-length', (d: any) => { return d.value.length; }) .attr('data-value', (d: any) => d.value) .classed('value', true) @@ -190,11 +58,6 @@ const addHeader = (nodeGroup: any) => { d3.select(d.currentTarget.parentNode.getElementsByClassName('full-header')[0]).remove(); } }); - - header.append('text') - .attr('transform', `translate(70, 50)`) - .classed('label', true) - .text((d: any) => d.label); }; const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeClick?: any) => { @@ -300,159 +163,6 @@ const addNodes = (nodes: any, nodesGroup: any, graphDirection: string, onNodeCli addProperties(nodeGroup); }; - -const centerToCoordinates = function (data: any, scaledBy: any, svg: any, zoom: any, callback: any) { - const { x, y, width, height } = data; - - const svgWidth = parseInt(svg.style('width')); - const svgHeight = parseInt(svg.style('height')); - - const svgCenter = { - x: svgWidth / 2, - y: svgHeight / 2 - }; - - svg.transition() - .call( - zoom.transform, - d3.zoomIdentity - .translate( - svgCenter.x - ((x * scaledBy) + (width * scaledBy) / 2), - svgCenter.y - ((y * scaledBy) + (height * scaledBy) / 2) - ) - .scale(scaledBy) - ).on('end', () => { - callback(); - }); -} - -const initCenterGraph = (allGroup: any, svg: any, zoom: any, callback: any) => { - centerGraph(allGroup, svg, zoom, callback); -} - -const centerGraph = (allGroup: any, svg: any, zoom: any, callback?: any) => { - const graphBBox = allGroup.node().getBBox(); - - const svgWidth = parseInt(svg.style('width')); - const svgHeight = parseInt(svg.style('height')); - - const data = { - x: graphBBox.x, - y: graphBBox.y, - width: graphBBox.width, - height: graphBBox.height - }; - - const scaledBy = Math.min( - (svgWidth - 100) / graphBBox.width, - (svgHeight - 100) / graphBBox.height, - 1 - ); - - centerToCoordinates(data, scaledBy, svg, zoom, callback || (() => { console.log('CENTERED')})); -} - -const customZoom = (value: number, zoom: any, svg: any) => { - if (value > 0) { - zoom.scaleBy(svg.transition(), 1.3); - } else { - zoom.scaleBy(svg.transition(), 0.7); - } -}; - -const customZoomIn = (zoom: any, svg: any) => { - customZoom(1, zoom, svg); -}; - -const customZoomOut = (zoom: any, svg: any) => { - customZoom(-1, zoom, svg); -}; - -export const relativeTo = (nodeA: any, nodeB: any, graphDirection: string) => { - const a = { - x1: nodeA.x, - y1: nodeA.y, - x2: nodeA.x + nodeA.width, - y2: nodeA.y + nodeA.height - }; - - const b = { - x1: nodeB.x, - y1: nodeB.y, - x2: nodeB.x + nodeB.width, - y2: nodeB.y + nodeB.height - }; - - if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'RIGHT', b: 'LEFT' }; - } - - if((a.x1 < b.x2) && !(a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { - return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'RIGHT', b: 'LEFT' }; - } - - if((a.x1 < b.x2) && !(a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { - return { a: 'RIGHT', b: 'LEFT' }; - } - - if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { - return { a: 'BOTTOM', b: 'TOP' }; - } - - if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && !(a.y2 > b.y1)) { - return { a: 'LEFT', b: 'RIGHT' }; - } - - if(!(a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'LEFT', b: 'RIGHT' }; - } - - if(!(a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { - return graphDirection === 'VERTICAL' ? { a: 'TOP', b: 'BOTTOM' } : { a: 'LEFT', b: 'RIGHT' }; - } - - if((a.x1 < b.x2) && (a.x2 > b.x1) && !(a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'TOP', b: 'BOTTOM' }; - } - - if((a.x1 < b.x2) && (a.x2 > b.x1) && (a.y1 < b.y2) && (a.y2 > b.y1)) { - return { a: 'RIGHT', b: 'RIGHT' }; - } - - return null; -}; - -export const getNodeAnchorPoint = (node: any, point: any) => { - const { width, height } = node; - - switch(point) { - case 'TOP': - return { x: node.x + (width / 2), y: node.y }; - case 'BOTTOM': - return { x: node.x + (width / 2), y: node.y + height }; - case 'LEFT': - return { x: node.x, y: node.y + (height / 2)}; - case 'RIGHT': - return { x: node.x + width, y: node.y + (height / 2)}; - default: - console.log('WRONG_ANCHOR_POINT_SELECTED'); - return null; - } -}; - -export const getLinkCoordinates = (nodeA: any, nodeB: any, graphDirection: string) => { - const _relativeTo: any = relativeTo(nodeA, nodeB, graphDirection); - - - const from: any = getNodeAnchorPoint(nodeA, _relativeTo.a); - const to: any = getNodeAnchorPoint(nodeB, _relativeTo.b); - - return { - from: { x: from.x, y: from.y }, - to: { x: to.x, y: to.y } - }; -}; - const addLinks = (links: any, linksGroup: any, graphDirection: string, nodes: any) => { const _linksGroup = linksGroup.selectAll() .data(links) @@ -553,13 +263,5 @@ const addLinks = (links: any, linksGroup: any, graphDirection: string, nodes: an export { addNodes, - addLinks, - centerGraph, - initCenterGraph, - customZoom, - customZoomIn, - customZoomOut, - linksTypeIconMap, - iconsMap, - itemGroupIconMap + addLinks } diff --git a/src/components/HappiGraph/happi-graph.component.tsx b/src/components/HappiGraph/happi-graph.component.tsx index 9ab35a9..9ab9987 100644 --- a/src/components/HappiGraph/happi-graph.component.tsx +++ b/src/components/HappiGraph/happi-graph.component.tsx @@ -3,9 +3,9 @@ import * as d3 from "d3"; // import "./happi-graph.scss"; import { GraphType, mapLinks, mapNodes } from "./happi-graph.helpers"; import { elkApproach, visApproach } from "./happi-graph.algorithms"; -import * as LineageRender from "./happi-graph.render"; -import * as TexInheritanceRender from "./Tex/tex-inheritance.render"; -import * as TexNeighbourhoodRender from "./Tex/tex-inheritance.render"; +import { addLinks as addLinksLineage, addNodes as addNodesLineage, centerGraph, customZoomIn, customZoomOut, initCenterGraph } from "./happi-graph.render"; +import {addLinks as addLinksTexInher, addNodes as addNodesTexInher} from "./Tex/tex-inheritance.render"; +import {addLinks as addLinksTexNeigh, addNodes as addNodesTexNeigh} from "./Tex/tex-neighbourhood.render"; import HappiGraphLegend from "./happi-graph-legend.component"; import { ActionIcon } from '@mantine/core'; @@ -55,19 +55,13 @@ interface State { allGroup: any; isFullscreen: boolean; printMode: boolean; - - addLinks: any; - addNodes: any; - centerGraph: any; - customZoomIn: any; - customZoomOut: any; - initCenterGraph: any; graphType: number; } class HappiGraph extends React.Component { constructor(props: Props) { super(props); + const mappedNodes = mapNodes(props.rawData.nodes, props.selectedNodeId); const mappedLinks = mapLinks(props.rawData.edges, mappedNodes); @@ -89,33 +83,42 @@ class HappiGraph extends React.Component { allGroup: null, isFullscreen: false, printMode: props.printMode ? true : false, - addLinks: this.selectGraphType(props.graphType).addLinks, - addNodes: this.selectGraphType(props.graphType).addNodes, - centerGraph: this.selectGraphType(props.graphType).centerGraph, - customZoomIn: this.selectGraphType(props.graphType).customZoomIn, - customZoomOut: this.selectGraphType(props.graphType).customZoomOut, - initCenterGraph: this.selectGraphType(props.graphType).initCenterGraph, graphType: props.graphType }; } - selectGraphType = (type: number): any => { + getGraphRenderMethods = (type: number): {addNodes:any, addLinks:any} => { let selectedGraphType; switch(type) { case GraphType.LINEAGE: { - selectedGraphType=LineageRender; + selectedGraphType={ + addNodes: addNodesLineage, + addLinks: addLinksLineage + }; + break; } case GraphType.TEX_INHERITANCE: { - selectedGraphType=TexInheritanceRender; + selectedGraphType={ + addNodes: addNodesTexInher, + addLinks: addLinksTexInher + }; + break; } case GraphType.TEX_NEIGHBOURHOOD: { - selectedGraphType=TexNeighbourhoodRender; + selectedGraphType={ + addNodes: addNodesTexNeigh, + addLinks: addLinksTexNeigh + }; + break; } default: - selectedGraphType=LineageRender + selectedGraphType={ + addNodes: addNodesLineage, + addLinks: addLinksLineage + }; console.log('GRAPH_TYPE_NOT_SELECTED'); } return selectedGraphType; @@ -212,7 +215,7 @@ class HappiGraph extends React.Component { const { debug } = this.state; debug && console.log('init()'); - const { svg, nodes, links, graphDirection, graphType } = this.state; + const { svg, nodes, links, graphDirection } = this.state; const allGroup = svg.append('g') @@ -238,14 +241,17 @@ class HappiGraph extends React.Component { const { zoom } = this.state; const { onNodeClick } = this.props; - svg + svg .call(zoom) .on('dblclick.zoom', null); - this.state.addNodes(nodes, nodesGroup, graphDirection, onNodeClick); - this.state.addLinks(links, linksGroup, graphDirection, nodes); + + const addNodes = this.getGraphRenderMethods(this.state.graphType).addNodes; + const addLinks = this.getGraphRenderMethods(this.state.graphType).addLinks; + addNodes(nodes, nodesGroup, graphDirection, onNodeClick); + addLinks(links, linksGroup, graphDirection, nodes); - this.state.initCenterGraph(allGroup, svg, zoom, callback); + initCenterGraph(allGroup, svg, zoom, callback); }); } @@ -260,7 +266,7 @@ class HappiGraph extends React.Component { svg, zoom } = this.state; - this.state.centerGraph(allGroup, svg, zoom); + centerGraph(allGroup, svg, zoom); }); } @@ -331,15 +337,15 @@ class HappiGraph extends React.Component { { !printMode && <>
- this.state.customZoomIn(zoom, svg) } /> + customZoomIn(zoom, svg) } /> - this.state.customZoomOut(zoom, svg) } /> + customZoomOut(zoom, svg) } /> - this.state.centerGraph(allGroup, svg, zoom) } /> + centerGraph(allGroup, svg, zoom) } /> diff --git a/src/components/HappiGraph/happi-graph.render.ts b/src/components/HappiGraph/happi-graph.render.ts index 50b26bc..b7ac748 100644 --- a/src/components/HappiGraph/happi-graph.render.ts +++ b/src/components/HappiGraph/happi-graph.render.ts @@ -115,7 +115,7 @@ export const addIcon = (nodeGroup: any, iconsMap: any) => { }) }; -const isSelected = (nodeGroup: any) => { +export const isSelected = (nodeGroup: any) => { nodeGroup .append('path') .classed('pin', true) From fd67d8e26db1863d176a8e836bea30f74c5da6de Mon Sep 17 00:00:00 2001 From: habib Date: Wed, 7 Jun 2023 09:57:36 +0100 Subject: [PATCH 7/8] Git 150 Added option to change graph type on frontend --- src/components/App/index.scss | 8 +---- src/components/App/index.tsx | 36 +++++++------------ .../HappiGraph/happi-graph.component.tsx | 2 +- 3 files changed, 15 insertions(+), 31 deletions(-) diff --git a/src/components/App/index.scss b/src/components/App/index.scss index f68056d..075af84 100644 --- a/src/components/App/index.scss +++ b/src/components/App/index.scss @@ -14,13 +14,7 @@ html, body { display:flex; flex-direction: column; align-items: center; + padding-top: 20px; height:100%; width:100%; } - -#title { - position: absolute; - top: 0; - left: 0; - z-index: 1; -} \ No newline at end of file diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index aeb8e3f..f89b247 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -24,27 +24,9 @@ export function App() { const [opened, setOpened] = useState(false); const [graphType, selectGraphType] = useState(GraphType.TEX_INHERITANCE); - const selectGraphName = () => { - let graphName = ""; - switch(graphType) { - case GraphType.LINEAGE: { - graphName = "Lineage"; - break; - } - case GraphType.TEX_INHERITANCE: { - graphName = "Tex Entity Inheritance"; - break; - } - case GraphType.TEX_NEIGHBOURHOOD: { - graphName = "Tex Neighbourhood"; - break; - } - default: - graphName = "Lineage"; - console.log('GRAPH_TYPE_NOT_SELECTED'); - } - return graphName; - } + const handleChange = (event: any) => { + selectGraphType(Number(event.target.value)); + }; const selectGraphData = () => { let graphData; @@ -57,6 +39,10 @@ export function App() { graphData = texMockData; break; } + case GraphType.TEX_NEIGHBOURHOOD: { + graphData = texMockData; + break; + } default: graphData = texMockData; console.log('GRAPH_TYPE_NOT_SELECTED'); @@ -67,8 +53,12 @@ export function App() { return <>
-

{selectGraphName()}

-
+ +
{ isLoading: true, links: [...mappedLinks], nodeCountLimit: props.nodeCountLimit ? props.nodeCountLimit : 0, - nodeDistanceX: props.nodeDistanceX ? props.nodeDistanceX : 100, + nodeDistanceX: props.nodeDistanceX ? props.nodeDistanceX : 200, nodeDistanceY: props.nodeDistanceY ? props.nodeDistanceY : 400, nodes: [...mappedNodes], selectedNodeId: props.selectedNodeId, From cbe17df68740ada1c87b7d7eb044263fb205026c Mon Sep 17 00:00:00 2001 From: habib Date: Mon, 19 Jun 2023 15:07:31 +0100 Subject: [PATCH 8/8] Git 150 removed the heading at the top of the page Signed-off-by: habib --- src/components/App/index.tsx | 35 ++++++------------- .../HappiGraph/happi-graph.component.tsx | 11 +++++- 2 files changed, 21 insertions(+), 25 deletions(-) diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index f89b247..6073ea1 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react'; +import React, { useState, useEffect } from 'react'; import { HappiGraph, @@ -10,55 +10,42 @@ 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); - const [graphType, selectGraphType] = useState(GraphType.TEX_INHERITANCE); - - const handleChange = (event: any) => { - selectGraphType(Number(event.target.value)); - }; + //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 graphData; + let objectGraphData; switch(graphType) { case GraphType.LINEAGE: { - graphData = mockData; + objectGraphData = lineageMockData; break; } case GraphType.TEX_INHERITANCE: { - graphData = texMockData; + objectGraphData = texMockData; break; } case GraphType.TEX_NEIGHBOURHOOD: { - graphData = texMockData; + objectGraphData = texMockData; break; } default: - graphData = texMockData; + objectGraphData = texMockData; console.log('GRAPH_TYPE_NOT_SELECTED'); } - return graphData; + return objectGraphData; } return <>
-
- -
} + actions={} onNodeClick={(d: any) => { setSelectedNodeData(d); setOpened(true); }} onGraphRender={() => { console.log('Graph rendered'); }} />
diff --git a/src/components/HappiGraph/happi-graph.component.tsx b/src/components/HappiGraph/happi-graph.component.tsx index c44a7b9..317ffce 100644 --- a/src/components/HappiGraph/happi-graph.component.tsx +++ b/src/components/HappiGraph/happi-graph.component.tsx @@ -20,6 +20,7 @@ import { AiOutlineFullscreen, AiOutlineFullscreenExit } from 'react-icons/ai'; +import { Console } from "console"; interface Props { actions: any; @@ -209,6 +210,12 @@ class HappiGraph extends React.Component { const { debug } = this.state; debug && console.log("componentDidUpdate()", this.state); + + + } + + changeGraphType() { + this.componentDidMount(); } init(callback: any) { @@ -283,7 +290,9 @@ class HappiGraph extends React.Component { allGroup, isFullscreen, debug, - printMode + printMode, + graphType, + rawData } = this.state; return (<>