repo.jdbc.json revision 10ce1c22b1cd83482f0127254fe8a27610bb25f5
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller{
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "connection" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "dbType" : "DB2",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "jndiName" : "",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "driverClass" : "com.ibm.db2.jcc.DB2Driver",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "jdbcUrl" : "jdbc:db2://localhost:60000/dopenidm:retrieveMessagesFromServerOnGetMessage=true;",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "username" : "db2inst1",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "password" : "changeme",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "defaultCatalog" : "sopenidm",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "maxBatchSize" : 100,
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "maxTxRetry" : 5,
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "enableConnectionPool" : true,
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "connectionTimeoutInMs" : 30000
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "queries" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "genericTables" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "credential-query" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id WHERE prop.propkey='/userName' AND prop.propvalue = ${username} AND objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "find-by-id" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id WHERE obj.objectid = ${id} AND objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-by-field-value" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id WHERE prop.propkey=CONCAT('/', ${field}) AND prop.propvalue = ${value} AND objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-users-of-direct-role" : "select obj.fullobject from ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id where objtype.objecttype = ${_resource} AND prop.propKey LIKE '/roles/%' AND prop.propValue = ${role}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-all-ids" : "SELECT obj.objectid FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objtype ON obj.objecttypes_id = objtype.id WHERE objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-all" : "SELECT obj.fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objtype ON obj.objecttypes_id = objtype.id WHERE objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-all-ids-count" : "SELECT COUNT(obj.objectid) AS total FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objtype ON obj.objecttypes_id = objtype.id WHERE objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-all-count" : "SELECT COUNT(obj.fullobject) AS total FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objtype ON obj.objecttypes_id = objtype.id WHERE objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "for-userName" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id WHERE prop.propkey='/userName' AND prop.propvalue = ${uid} AND objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "credential-internaluser-query" : "SELECT credprop.${_mainTable}_id, credprop.propkey, credprop.propvalue FROM ${_dbSchema}.${_propTable} credprop INNER JOIN ${_dbSchema}.${_mainTable} obj ON obj.id = credprop.${_mainTable}_id INNER JOIN ${_dbSchema}.${_propTable} conditionprop ON obj.id = conditionprop.${_mainTable}_id INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id WHERE credprop.propkey='/userPassword' AND conditionprop.propkey='/_id' AND conditionprop.propvalue = ${username} AND objtype.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "scan-tasks" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id INNER JOIN ${_dbSchema}.${_propTable} complete ON obj.id = complete.${_mainTable}_id INNER JOIN ${_dbSchema}.objecttypes objtype ON objtype.id = obj.objecttypes_id WHERE ( prop.propkey=${property} AND prop.propvalue < ${condition.before} AND objtype.objecttype = ${_resource} ) AND ( complete.propkey=${taskState.completed} AND complete.propvalue is NULL )",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-cluster-failed-instances" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id INNER JOIN ${_dbSchema}.${_propTable} state ON obj.id = state.${_mainTable}_id WHERE (prop.propkey = '/timestamp' AND prop.propvalue <= ${timestamp}) AND (state.propkey = '/state' AND (state.propvalue = '1' OR state.propvalue = '2'))",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-cluster-instances" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop ON obj.id = prop.${_mainTable}_id WHERE (prop.propkey = '/type' AND prop.propvalue = 'state')",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-cluster-events" : "SELECT fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.${_propTable} prop1 ON obj.id = prop1.${_mainTable}_id INNER JOIN ${_dbSchema}.${_propTable} prop2 ON obj.id = prop2.${_mainTable}_id WHERE (prop1.propkey = '/type' AND prop1.propvalue = 'event') AND (prop2.propkey = '/instanceId' AND prop2.propvalue = ${instanceId})",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-managed-users" : "SELECT * FROM (SELECT obj.fullobject, row_number() over (ORDER BY CASE WHEN ${orderByDir} = 'asc' THEN orderby.propvalue END asc, CASE WHEN ${orderByDir} = 'desc' THEN orderby.propvalue END desc) rn FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objTypes ON obj.objecttypes_id = objTypes.id and objTypes.objecttype = ${_resource} INNER JOIN ${_dbSchema}.${_propTable} orderby on obj.id = orderby.managedobjects_id and orderby.propkey = CONCAT('/',${orderBy}) ORDER BY CASE WHEN ${orderByDir} = 'asc' THEN orderby.propvalue END asc, CASE WHEN ${orderByDir} = 'desc' THEN orderby.propvalue END desc) WHERE rn BETWEEN ${int:_pagedResultsOffset}+1 AND ${int:_pagedResultsOffset}+${int:_pageSize} ORDER BY rn",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-managed-users-filtered" : "SELECT * FROM (SELECT obj.fullobject, row_number() over (ORDER BY CASE WHEN ${orderByDir} = 'asc' THEN orderby.propvalue END asc, CASE WHEN ${orderByDir} = 'desc' THEN orderby.propvalue END desc) rn FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objTypes ON obj.objecttypes_id = objTypes.id and objTypes.objecttype = ${_resource} INNER JOIN ${_dbSchema}.${_propTable} orderby on obj.id = orderby.managedobjects_id and orderby.propkey = CONCAT('/',${orderBy}) INNER JOIN ${_dbSchema}.${_propTable} userName on obj.id = userName.${_mainTable}_id and userName.propkey = '/userName' INNER JOIN ${_dbSchema}.${_propTable} givenName on obj.id = givenName.${_mainTable}_id and givenName.propkey = '/givenName' INNER JOIN ${_dbSchema}.${_propTable} sn on obj.id = sn.${_mainTable}_id and sn.propkey = '/sn' INNER JOIN ${_dbSchema}.${_propTable} mail on obj.id = mail.${_mainTable}_id and mail.propkey = '/mail' INNER JOIN ${_dbSchema}.${_propTable} accountStatus on obj.id = accountStatus.${_mainTable}_id and accountStatus.propkey = '/accountStatus' WHERE userName.propvalue LIKE concat(${userName},'%') AND mail.propvalue LIKE concat(${mail},'%') AND givenName.propvalue LIKE concat(${givenName},'%') AND sn.propvalue LIKE concat(${sn},'%') AND accountStatus.propvalue LIKE concat(${accountStatus},'%') ORDER BY CASE WHEN ${orderByDir} = 'asc' THEN orderby.propvalue END asc, CASE WHEN ${orderByDir} = 'desc' THEN orderby.propvalue END desc) WHERE rn BETWEEN ${int:_pagedResultsOffset}+1 AND ${int:_pagedResultsOffset}+${int:_pageSize} ORDER BY rn",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-managed-users-count" : "SELECT '{ \"total\":' || COUNT(*) || '}' as fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objTypes ON obj.objecttypes_id = objTypes.id and objTypes.objecttype = ${_resource}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-managed-users-filtered-count" : "SELECT '{ \"total\":' || COUNT(*) || '}' as fullobject FROM ${_dbSchema}.${_mainTable} obj INNER JOIN ${_dbSchema}.objecttypes objTypes ON obj.objecttypes_id = objTypes.id and objTypes.objecttype = ${_resource} INNER JOIN ${_dbSchema}.${_propTable} userName on obj.id = userName.${_mainTable}_id and userName.propkey = '/userName' INNER JOIN ${_dbSchema}.${_propTable} givenName on obj.id = givenName.${_mainTable}_id and givenName.propkey = '/givenName' INNER JOIN ${_dbSchema}.${_propTable} sn on obj.id = sn.${_mainTable}_id and sn.propkey = '/sn' INNER JOIN ${_dbSchema}.${_propTable} mail on obj.id = mail.${_mainTable}_id and mail.propkey = '/mail' INNER JOIN ${_dbSchema}.${_propTable} accountStatus on obj.id = accountStatus.${_mainTable}_id and accountStatus.propkey = '/accountStatus' WHERE userName.propvalue LIKE concat(${userName},'%') AND mail.propvalue LIKE concat(${mail},'%') AND givenName.propvalue LIKE concat(${givenName},'%') AND sn.propvalue LIKE concat(${sn},'%') AND accountStatus.propvalue LIKE concat(${accountStatus},'%')"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "explicitTables" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-all-ids" : "SELECT objectid FROM ${_dbSchema}.${_table}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "for-internalcredentials" : "SELECT * FROM ${_dbSchema}.internaluser WHERE objectid = ${uid}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-notifications-for-user" : "SELECT * FROM ${_dbSchema}.${_table} WHERE receiverId = ${userId} order by createDate desc",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "credential-query" : "SELECT * FROM ${_dbSchema}.${_table} WHERE objectid = ${username}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "credential-internaluser-query" : "SELECT * FROM ${_dbSchema}.${_table} WHERE objectid = ${username}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "links-for-firstId" : "SELECT * FROM ${_dbSchema}.${_table} WHERE linkType = ${linkType} AND linkQualifier = ${linkQualifier} AND firstid = ${firstId}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "links-for-secondId" : "SELECT * FROM ${_dbSchema}.${_table} WHERE linkType = ${linkType} AND linkQualifier = ${linkQualifier} AND secondid = ${secondId}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "links-for-linkType" : "SELECT * FROM ${_dbSchema}.${_table} WHERE linkType = ${linkType} AND linkQualifier = ${linkQualifier}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "scan-tasks" : "SELECT * FROM ${_dbSchema}.${_table} WHERE ${property} < ${condition.before} AND ${taskState.completed} is NULL",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit-by-mapping" : "SELECT * FROM ${_dbSchema}.auditrecon WHERE mapping = ${mappingName}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit-by-recon-id" : "SELECT * FROM ${_dbSchema}.auditrecon WHERE reconId = ${reconId}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit-by-recon-id-type" : "SELECT * FROM ${_dbSchema}.auditrecon WHERE reconId = ${reconId} AND entryType = ${entryType}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit-by-recon-id-situation" : "SELECT * FROM ${_dbSchema}.auditrecon WHERE reconId = ${reconId} AND situation = ${situation}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit-by-activity-parent-action" : "SELECT * FROM ${_dbSchema}.auditactivity WHERE parentactionid = ${parentActionId}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "query-all" : "SELECT * FROM ${_dbSchema}.${_table}",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "get-recons" : "SELECT reconid, activitydate, mapping, message FROM ${_dbSchema}.auditrecon WHERE mapping LIKE ${includeMapping} AND mapping NOT LIKE ${excludeMapping} AND entrytype = 'summary' ORDER BY activitydate DESC"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "commands" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "genericTables" : { },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "explicitTables" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "purge-by-recon-ids-to-keep" : "DELETE FROM ${_dbSchema}.auditrecon WHERE mapping LIKE ${includeMapping} AND mapping NOT LIKE ${excludeMapping} AND reconid NOT IN (${list:reconIds})",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "purge-by-recon-expired" : "DELETE FROM ${_dbSchema}.auditrecon WHERE mapping LIKE ${includeMapping} AND mapping NOT LIKE ${excludeMapping} AND activitydate < ${timestamp}"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "resourceMapping" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "default" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mainTable" : "genericobjects",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "propertiesTable" : "genericobjectproperties",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchableDefault" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "genericMapping" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "managed/*" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mainTable" : "managedobjects",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "propertiesTable" : "managedobjectproperties",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchableDefault" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "managed/user" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mainTable" : "managedobjects",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "propertiesTable" : "managedobjectproperties",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchableDefault" : false,
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "properties" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/userName" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/givenName" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/sn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/mail" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/accountStatus" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/roles" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "/sunset" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchable" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "scheduler" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mainTable" : "schedulerobjects",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "propertiesTable" : "schedulerobjectproperties",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchableDefault" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "cluster" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mainTable" : "clusterobjects",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "propertiesTable" : "clusterobjectproperties",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "searchableDefault" : true
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "explicitMapping" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "link" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "links",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_rev" : "rev",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "linkType" : "linktype",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "firstId" : "firstid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "secondId" : "secondid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "linkQualifier" : "linkQualifier"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "ui/notification" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "uinotification",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_rev" : "rev",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "requester" : "requester",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "requesterId" : "requesterId",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "receiverId" : "receiverId",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "createDate" : "createDate",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "notificationType" : "notificationType",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "notificationSubtype" : "notificationSubtype",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "message" : "message"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "internal/user" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "internaluser",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_rev" : "rev",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "password" : "pwd",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "roles" : { "column" : "roles", "type" : "JSON_LIST" }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit/activity" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "auditactivity",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "activityId" : "activityid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "timestamp" : "activitydate",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "action" : "activity",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "message" : "message",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectId" : "subjectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "rev" : "subjectrev",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "rootActionId" : "rootactionid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "parentActionId" : "parentactionid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "requester" : "requester",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "approver" : "approver",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "before" : "subjectbefore",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "after" : "subjectafter",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "status" : "status",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "changedFields" : "changedfields",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "passwordChanged" : "passwordchanged"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit/recon" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "auditrecon",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "entryType" : "entrytype",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "rootActionId" : "rootactionid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "action" : "activity",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "message" : "message",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "linkQualifier": "linkQualifier",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "reconciling" : "reconciling",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "reconId" : "reconid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "reconAction" : "reconaction",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "situation" : "situation",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "sourceObjectId" : "sourceobjectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "status" : "status",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "targetObjectId" : "targetobjectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "ambiguousTargetObjectIds" : "ambiguoustargetobjectids",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "timestamp" : "activitydate",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "actionId" : "actionid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "exception" : "exceptiondetail",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mapping" : "mapping",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "messageDetail" : { "column" : "messagedetail", "type" : "JSON_MAP" }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit/sync" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "auditsync",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "status" : "status",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "situation" : "situation",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "action" : "activity",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "actionId" : "actionid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "rootActionId" : "rootactionid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "sourceObjectId" : "sourceobjectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "targetObjectId" : "targetobjectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "linkQualifier": "linkQualifier",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "timestamp" : "activitydate",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "mapping" : "mapping",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "exception" : "exceptiondetail",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "message" : "message",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "messageDetail" : { "column" : "messagedetail", "type" : "JSON_MAP" }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "audit/access" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "auditaccess",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "action" : "activity",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "ip" : "ip",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "principal" : "principal",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "roles" : "roles",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "status" : "status",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "timestamp" : "activitydate",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "userid" : "userid"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "security" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "security",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_rev" : "rev",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "storeString" : "storestring"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller },
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "security/keys" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "table" : "securitykeys",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "objectToColumn" : {
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_id" : "objectid",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "_rev" : "rev",
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller "keyPair" : "keypair"
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller }
10ce1c22b1cd83482f0127254fe8a27610bb25f5Brendan Miller}