Built with blockbuilder.org
Last active
May 4, 2018 15:24
-
-
Save nacmacfeegle/fc8ee2227d6b7ee506b237442e8c8844 to your computer and use it in GitHub Desktop.
security-migration-payload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://d3js.org/d3.v4.min.js"></script> | |
| <style> | |
| body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } | |
| </style> | |
| </head> | |
| <body> | |
| <div class=""> | |
| <div id="myGraph"></div> | |
| </div> | |
| <script> | |
| d3.json('sec-shane-no-xml-payload.json', data => { | |
| networkChart = renderChartCollapsibleNetwork() | |
| .svgHeight(window.innerHeight - 30) | |
| .svgWidth(window.innerWidth - 30) | |
| .container('#myGraph') | |
| .data({ root: data }) | |
| .debug(true) | |
| .run() | |
| }) | |
| </script> | |
| <script> | |
| /* | |
| This code is based on following convention: | |
| https://github.com/bumbeishvili/d3-coding-conventions | |
| */ | |
| function renderChartCollapsibleNetwork(params) { | |
| // exposed variables | |
| var attrs = { | |
| id: 'id' + Math.floor(Math.random() * 1000000), | |
| svgWidth: 1400, | |
| svgHeight: 1200, | |
| marginTop: 0, | |
| marginBottom: 3, | |
| marginRight: 0, | |
| marginLeft: 30, | |
| nodeRadius: 6, | |
| container: 'body', | |
| distance: 100, | |
| //hiddenChildLevel: 1, | |
| hiddenChildLevel: 3, | |
| nodeStroke: '#41302D', | |
| nodeTextColor: '#E5E5E5', | |
| linkColor: '#303030', | |
| activeLinkColor: "blue", | |
| hoverOpacity: 0.2, | |
| maxTextDisplayZoomLevel: 1, | |
| textDisplayed: true, | |
| lineStrokeWidth: 1.5, | |
| data: null | |
| }; | |
| /*############### IF EXISTS OVERWRITE ATTRIBUTES FROM PASSED PARAM ####### */ | |
| var attrKeys = Object.keys(attrs); | |
| attrKeys.forEach(function (key) { | |
| if (params && params[key]) { | |
| attrs[key] = params[key]; | |
| } | |
| }) | |
| //innerFunctions which will update visuals | |
| var updateData; | |
| var filter; | |
| //main chart object | |
| var main = function (selection) { | |
| selection.each(function scope() { | |
| //calculated properties | |
| var calc = {} | |
| calc.chartLeftMargin = attrs.marginLeft; | |
| calc.chartTopMargin = attrs.marginTop; | |
| calc.chartWidth = attrs.svgWidth - attrs.marginRight - calc.chartLeftMargin; | |
| calc.chartHeight = attrs.svgHeight - attrs.marginBottom - calc.chartTopMargin; | |
| //########################## HIERARCHY STUFF ######################### | |
| var hierarchy = {}; | |
| hierarchy.root = d3.hierarchy(attrs.data.root); | |
| //########################### BEHAVIORS ######################### | |
| var behaviors = {}; | |
| behaviors.zoom = d3.zoom().scaleExtent([0.75, 100, 8]).on('zoom', zoomed); | |
| behaviors.drag = d3.drag().on("start", dragstarted).on("drag", dragged).on("end", dragended); | |
| //########################### LAYOUTS ######################### | |
| var layouts = {}; | |
| // custom radial kayout | |
| layouts.radial = d3.radial(); | |
| //########################### FORCE STUFF ######################### | |
| var force = {}; | |
| force.link = d3.forceLink().id(d => d.id); | |
| force.charge = d3.forceManyBody() | |
| force.center = d3.forceCenter(calc.chartWidth / 2, calc.chartHeight / 2) | |
| // // prevent collide | |
| // force.collide = d3.forceCollide().radius(d => { | |
| // // if parent has many children, reduce collide strength | |
| // if (d.parent) { | |
| // if (d.parent.children.length > 10) { | |
| // // also slow down node movement | |
| // slowDownNodes(); | |
| // return 7; | |
| // } | |
| // } | |
| // // increase collide strength | |
| // if (d.children && d.depth > 2) { | |
| // return attrs.nodeRadius; | |
| // } | |
| // return attrs.nodeRadius * 2; | |
| // }); | |
| //manually set x positions (which is calculated using custom radial layout) | |
| force.x = d3.forceX() | |
| .strength(0.5) | |
| .x(function (d, i) { | |
| // if node does not have children and is channel (depth=2) , then position it on parent's coordinate | |
| if (!d.children && d.depth > 2) { | |
| if (d.parent) { | |
| d = d.parent | |
| } | |
| } | |
| // custom circle projection - radius will be - (d.depth - 1) * 150 | |
| return projectCircle(d.proportion, (d.depth - 1) * 150)[0]; | |
| }); | |
| //manually set y positions (which is calculated using d3.cluster) | |
| force.y = d3.forceY() | |
| .strength(0.5) | |
| .y(function (d, i) { | |
| // if node does not have children and is channel (depth=2) , then position it on parent's coordinate | |
| if (!d.children && d.depth > 2) { | |
| if (d.parent) { | |
| d = d.parent | |
| } | |
| } | |
| // custom circle projection - radius will be - (d.depth - 1) * 150 | |
| return projectCircle(d.proportion, (d.depth - 1) * 150)[1]; | |
| }) | |
| //--------------------------------- INITIALISE FORCE SIMULATION ---------------------------- | |
| // get based on top parameter simulation | |
| force.simulation = d3.forceSimulation() | |
| .force('link', force.link) | |
| .force('charge', force.charge) | |
| .force('center', force.center) | |
| .force("collide", force.collide) | |
| .force('x', force.x) | |
| .force('y', force.y) | |
| //########################### HIERARCHY STUFF ######################### | |
| // flatten root | |
| var arr = flatten(hierarchy.root); | |
| // hide members based on their depth | |
| arr.forEach(d => { | |
| if (d.depth > attrs.hiddenChildLevel) { | |
| d._children = d.children; | |
| d.children = null; | |
| } | |
| }) | |
| //#################################### DRAWINGS ####################### | |
| //drawing containers | |
| var container = d3.select(this); | |
| //add svg | |
| var svg = container.patternify({ tag: 'svg', selector: 'svg-chart-container' }) | |
| .attr('width', attrs.svgWidth) | |
| .attr('height', attrs.svgHeight) | |
| .call(behaviors.zoom) | |
| //add container g element | |
| var chart = svg.patternify({ tag: 'g', selector: 'chart' }) | |
| .attr('transform', 'translate(' + (calc.chartLeftMargin) + ',' + calc.chartTopMargin + ')'); | |
| //################################ Chart Content Drawing ################################## | |
| //link wrapper | |
| var linksWrapper = chart.patternify({ tag: 'g', selector: 'links-wrapper' }) | |
| //node wrapper | |
| var nodesWrapper = chart.patternify({ tag: 'g', selector: 'nodes-wrapper' }) | |
| var nodes, links, enteredNodes; | |
| // reusable function which updates visual based on data change | |
| update(); | |
| //update visual based on data change | |
| function update(clickedNode) { | |
| // set xy and proportion properties with custom radial layout | |
| layouts.radial(hierarchy.root); | |
| //nodes and links array | |
| var nodesArr = flatten(hierarchy.root, true) | |
| .orderBy(d => d.depth) | |
| .filter(d => !d.hidden); | |
| var linksArr = hierarchy.root.links() | |
| .filter(d => !d.source.hidden) | |
| .filter(d => !d.target.hidden) | |
| // make new nodes to appear near the parents | |
| nodesArr.forEach(function (d, i) { | |
| if (clickedNode && clickedNode.id == (d.parent && d.parent.id)) { | |
| d.x = d.parent.x; | |
| d.y = d.parent.y; | |
| } | |
| }); | |
| //links | |
| links = linksWrapper.selectAll('.link').data(linksArr, d => d.target.id); | |
| links.exit().remove(); | |
| links = links.enter() | |
| .append('line') | |
| .attr('class', 'link') | |
| .merge(links).attr('stroke', '#9ecae1'); | |
| links.attr('stroke', attrs.linkColor).attr('stroke-width', attrs.lineStrokeWidth) | |
| //node groups | |
| nodes = nodesWrapper.selectAll('.node').data(nodesArr, d => d.id); | |
| var exited = nodes.exit().remove(); | |
| var enteredNodes = nodes.enter() | |
| .append('g') | |
| .attr('class', 'node') | |
| //bind event handlers | |
| enteredNodes.on('click', nodeClick) | |
| .on('mouseenter', nodeMouseEnter) | |
| .on('mouseleave', nodeMouseLeave) | |
| .call(behaviors.drag) | |
| //node texts | |
| enteredNodes.append('text').attr('class', 'node-texts') | |
| .attr('x', 30).attr('fill', attrs.nodeTextColor) | |
| .text(d => d.data.name) | |
| .style('display', attrs.textDisplayed ? "initial" : "none") | |
| //channels grandchildren | |
| var channelsGrandchildren = enteredNodes | |
| .append("circle") | |
| .attr('r', 7) | |
| .attr('stroke-width', 5) | |
| .attr('stroke', attrs.nodeStroke) | |
| //merge node groups and style it | |
| nodes = enteredNodes.merge(nodes); | |
| nodes | |
| .attr('fill', d => { | |
| return d._children ? "#3182bd" : d.children ? "#c6dbef" : "#fd8d3c"; | |
| }) | |
| .style('cursor', 'pointer') | |
| //force simulation | |
| force.simulation.nodes(nodesArr) | |
| .on('tick', ticked); | |
| // links simulation | |
| force.simulation.force("link").links(links).id(d => d.id).distance(100).strength(d => 1); | |
| } | |
| //####################################### EVENT HANDLERS ######################## | |
| // zoom handler | |
| function zoomed() { | |
| //get transform event | |
| var transform = d3.event.transform; | |
| attrs.lastTransform = transform; | |
| // apply transform event props to the wrapper | |
| chart.attr('transform', transform) | |
| svg.selectAll('.node').attr("transform", function (d) { return `translate(${d.x},${d.y}) scale(${1 / (attrs.lastTransform ? attrs.lastTransform.k : 1)})`; }); | |
| svg.selectAll('.link').attr("stroke-width", attrs.lineStrokeWidth / (attrs.lastTransform ? attrs.lastTransform.k : 1)); | |
| // hide texts if zooming is less than certain level | |
| if (transform.k < attrs.maxTextDisplayZoomLevel) { | |
| svg.selectAll('.node-texts').style('display', 'none'); | |
| attrs.textDisplayed = false; | |
| } else { | |
| svg.selectAll('.node-texts').style('display', 'initial'); | |
| attrs.textDisplayed = true; | |
| } | |
| } | |
| //tick handler | |
| function ticked() { | |
| // set links position | |
| links.attr("x1", function (d) { return d.source.x; }) | |
| .attr("y1", function (d) { return d.source.y; }) | |
| .attr("x2", function (d) { return d.target.x; }) | |
| .attr("y2", function (d) { return d.target.y; }); | |
| //set nodes position | |
| svg.selectAll('.node').attr("transform", function (d) { return `translate(${d.x},${d.y}) scale(${1 / (attrs.lastTransform ? attrs.lastTransform.k : 1)})`; }); | |
| } | |
| //handler drag start event | |
| function dragstarted(d) { | |
| //disable node fixing | |
| nodes.each(d => { d.fx = null; d.fy = null }) | |
| } | |
| // handle dragging event | |
| function dragged(d) { | |
| // make dragged node fixed | |
| d.fx = d3.event.x; | |
| d.fy = d3.event.y; | |
| } | |
| //-------------------- handle drag end event --------------- | |
| function dragended(d) { | |
| // we are doing nothing, here , aren't we? | |
| } | |
| //-------------------------- node mouse hover handler --------------- | |
| function nodeMouseEnter(d) { | |
| //get hovered node | |
| var node = d3.select(this); | |
| //get links | |
| var links = hierarchy.root.links(); | |
| //get hovered node connected links | |
| var connectedLinks = links.filter(l => l.source.id == d.id || l.target.id == d.id); | |
| //get hovered node linked nodes | |
| var linkedNodes = connectedLinks.map(s => s.source.id).concat(connectedLinks.map(d => d.target.id)) | |
| //reduce all other nodes opacity | |
| nodesWrapper.selectAll('.node') | |
| .filter(n => linkedNodes.indexOf(n.id) == -1) | |
| .attr('opacity', attrs.hoverOpacity); | |
| //reduce all other links opacity | |
| linksWrapper.selectAll('.link').attr('opacity', attrs.hoverOpacity); | |
| //highlight hovered nodes connections | |
| linksWrapper.selectAll('.link') | |
| .filter(l => l.source.id == d.id || l.target.id == d.id) | |
| .attr('opacity', 1) | |
| .attr('stroke', attrs.activeLinkColor) | |
| } | |
| // --------------- handle mouseleave event --------------- | |
| function nodeMouseLeave(d) { | |
| // return things back to normal | |
| nodesWrapper.selectAll('.node').attr('opacity', 1); | |
| linksWrapper.selectAll('.link').attr('opacity', 1).attr('stroke', attrs.linkColor) | |
| } | |
| // --------------- handle node click event --------------- | |
| function nodeClick(d) { | |
| //free fixed nodes | |
| nodes.each(d => { d.fx = null; d.fy = null }) | |
| // collapse or expand node | |
| if (d.children) { | |
| d._children = d.children; | |
| d.children = null; | |
| update(); | |
| force.simulation.restart(); | |
| force.simulation.alphaTarget(0.15); | |
| } else if (d._children) { | |
| d.children = d._children; | |
| d._children = null; | |
| update(d); | |
| force.simulation.restart(); | |
| force.simulation.alphaTarget(0.15); | |
| } else { | |
| //nothing is to collapse or expand | |
| } | |
| freeNodes(); | |
| } | |
| //######################################### UTIL FUNCS ################################## | |
| updateData = function () { | |
| main.run(); | |
| } | |
| function slowDownNodes() { | |
| force.simulation.alphaTarget(0.05); | |
| }; | |
| function speedUpNodes() { | |
| force.simulation.alphaTarget(0.45); | |
| } | |
| function freeNodes() { | |
| d3.selectAll('.node').each(n => { n.fx = null; n.fy = null; }) | |
| } | |
| function projectCircle(value, radius) { | |
| var r = radius || 0; | |
| var corner = value * 2 * Math.PI; | |
| return [Math.sin(corner) * r, -Math.cos(corner) * r] | |
| } | |
| //recursively loop on children and extract nodes as an array | |
| function flatten(root, clustered) { | |
| var nodesArray = []; | |
| var i = 0; | |
| function recurse(node, depth) { | |
| if (node.children) | |
| node.children.forEach(function (child) { | |
| recurse(child, depth + 1); | |
| }); | |
| if (!node.id) node.id = ++i; | |
| else ++i; | |
| node.depth = depth; | |
| if (clustered) { | |
| if (!node.cluster) { | |
| // if cluster coordinates are not set, set it | |
| node.cluster = { x: node.x, y: node.y } | |
| } | |
| } | |
| nodesArray.push(node); | |
| } | |
| recurse(root, 1); | |
| return nodesArray; | |
| } | |
| function debug() { | |
| if (attrs.isDebug) { | |
| //stringify func | |
| var stringified = scope + ""; | |
| // parse variable names | |
| var groupVariables = stringified | |
| //match var x-xx= {}; | |
| .match(/var\s+([\w])+\s*=\s*{\s*}/gi) | |
| //match xxx | |
| .map(d => d.match(/\s+\w*/gi).filter(s => s.trim())) | |
| //get xxx | |
| .map(v => v[0].trim()) | |
| //assign local variables to the scope | |
| groupVariables.forEach(v => { | |
| main['P_' + v] = eval(v) | |
| }) | |
| } | |
| } | |
| debug(); | |
| }); | |
| }; | |
| //----------- PROTOTYEPE FUNCTIONS ---------------------- | |
| d3.selection.prototype.patternify = function (params) { | |
| var container = this; | |
| var selector = params.selector; | |
| var elementTag = params.tag; | |
| var data = params.data || [selector]; | |
| // pattern in action | |
| var selection = container.selectAll('.' + selector).data(data) | |
| selection.exit().remove(); | |
| selection = selection.enter().append(elementTag).merge(selection) | |
| selection.attr('class', selector); | |
| return selection; | |
| } | |
| // custom radial layout | |
| d3.radial = function () { | |
| return function setProportions(root) { | |
| recurse(root, 0, 1); | |
| function recurse(node, min, max) { | |
| node.proportion = (max + min) / 2; | |
| if (!node.x) { | |
| // if node has parent, match entered node positions to it's parent | |
| if (node.parent) { | |
| node.x = node.parent.x; | |
| } else { | |
| node.x = 0; | |
| } | |
| } | |
| // if node had parent, match entered node positions to it's parent | |
| if (!node.y) { | |
| if (node.parent) { | |
| node.y = node.parent.y; | |
| } else { | |
| node.y = 0; | |
| } | |
| } | |
| //recursively do the same for children | |
| if (node.children) { | |
| var offset = (max - min) / node.children.length; | |
| node.children.forEach(function (child, i, arr) { | |
| var newMin = min + offset * i; | |
| var newMax = newMin + offset; | |
| recurse(child, newMin, newMax); | |
| }); | |
| } | |
| } | |
| } | |
| } | |
| //https://github.com/bumbeishvili/d3js-boilerplates#orderby | |
| Array.prototype.orderBy = function (func) { | |
| this.sort((a, b) => { | |
| var a = func(a); | |
| var b = func(b); | |
| if (typeof a === 'string' || a instanceof String) { | |
| return a.localeCompare(b); | |
| } | |
| return a - b; | |
| }); | |
| return this; | |
| } | |
| //########################## BOILEPLATE STUFF ################ | |
| //dinamic keys functions | |
| Object.keys(attrs).forEach(key => { | |
| // Attach variables to main function | |
| return main[key] = function (_) { | |
| var string = `attrs['${key}'] = _`; | |
| if (!arguments.length) { return eval(` attrs['${key}'];`); } | |
| eval(string); | |
| return main; | |
| }; | |
| }); | |
| //set attrs as property | |
| main.attrs = attrs; | |
| //debugging visuals | |
| main.debug = function (isDebug) { | |
| attrs.isDebug = isDebug; | |
| if (isDebug) { | |
| if (!window.charts) window.charts = []; | |
| window.charts.push(main); | |
| } | |
| return main; | |
| } | |
| //exposed update functions | |
| main.data = function (value) { | |
| if (!arguments.length) return attrs.data; | |
| attrs.data = value; | |
| if (typeof updateData === 'function') { | |
| updateData(); | |
| } | |
| return main; | |
| } | |
| // run visual | |
| main.run = function () { | |
| d3.selectAll(attrs.container).call(main); | |
| return main; | |
| } | |
| main.filter = function (filterParams) { | |
| if (!arguments.length) return attrs.filterParams; | |
| attrs.filterParams = filterParams; | |
| if (typeof filter === 'function') { | |
| filter(); | |
| } | |
| return main; | |
| } | |
| return main; | |
| } | |
| </script> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f301fb4242c0bb4d5d0b00" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f301238a95bfbb4d5d0900" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f30168a1f6c5bb4d5d1100" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f3017ba074c5bb4d5d0f00" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "39de38bae19344ee9dfd1c0ada2c9387" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "90d94604b3494383854c0e7316402d62" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f301f6d822e0bb4d5d2300" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f30127669ddfbb4d5d2100" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601db7c1f65ab324f1102" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6012186dc64ab324f0f02" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601058b2166ab324f1502" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601ecdb5465ab324f1302" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6014228b466ab324f1902" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601d8576666ab324f1702" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc60191454a67ab324f1d02" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6014c54f066ab324f1b02" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "6aba463840044edfb0f6863d5dbf75a6" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6019066ee68ab324f2102" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6015666ec67ab324f1f02" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601ae7d376aab324f2502" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6012e54e969ab324f2302" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601d8d8706aab324f2702" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "25000" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008ed9c46ab884551" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "c67ab780b77443e19a0933e39cd82276" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "c1f514e87e764c27a042f559bee22589" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "1a71ea6ef8e41005718fd429a228b598" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601b8335359ab324ff701" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4591c78f09c210361b94a30191cd000c" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601a2e25061ab324ffd01" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-6" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-4" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator_USA" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator_CAN" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator_USA" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator_CAN" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-6" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-4" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "accd5e94d61340f4b8f922f1103711b3" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601c49cb659ab324ff901" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc60147403062ab324f0102" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Compensation_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Compensation_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Compensation_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Compensation_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "e06fab0c1c7d469891700455adbac5b8" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601849db261ab324fff01" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-3" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-9" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-3" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-9" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "961e020229214ac99ab846c5e34662c0" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Executive" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Analyst" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Auditor" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-3" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-1" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-6" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-7" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-4" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-8" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Executive" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Analyst" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-3" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-1" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-6" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-7" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-4" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-8" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Auditor" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "1db57911a184474f8bc2048175d66b4b" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6012a20ac62ab324f0502" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "d66726c1940410f72c2382d371c6582e" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-7" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Benefits_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Benefits_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Benefits_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Benefits_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-7" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "37d2acdef6214b9d9371e337cd36c8c1" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601aa426a62ab324f0302" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "d66726c1940410f72cfa072afd6758b5" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-8" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Absence_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Absence_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Absence_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-8" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Absence_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "f9dfda0792dc47da9f670259db1f8b18" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc60193e96f63ab324f0902" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "d66726c1940410f72b1b6bb2f36657d2" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-3" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-1" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-6" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-7" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-4" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-8" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-2" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-3" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-1" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-6" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-7" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-4" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-5" | |
| }, | |
| { | |
| "children": [], | |
| "name": "DOCUMENT_CATEGORY_SECURITY_SEGMENT-4-8" | |
| } | |
| ], | |
| "name": "50bfe5275462100030c8929e465506af" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a0cee858c80e4bf889e046d8ce8c3b11" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601d186e462ab324f0702" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-136" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-137" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-138" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc601cc62a364ab324f0d02" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-120" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-121" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4573240d8dc6017843af63ab324f0b02" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "SERVICE_CENTER-10-1" | |
| } | |
| ], | |
| "name": "50bfe5275462100028f2686662aa0137" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "GPS_USA_company" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e9727232074441" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "824efe63034f43e6a45e260a06a46bf3" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5363f58083184088b7f273061de0da20" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "50bfe52754621000345f5954bf1a0712" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "68978a6b9b0a1074e25933728fd3418f" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "1da763b87b6c103c0ed6da60e31d1b77" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Benefits_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Benefits_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "d83437e99ebf4b75a0c53ba290ad9199" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "00707eaf108343a081a3f0a694743e67" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a0891771f0a74848a16c31be065e85c5" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "994457cee2de46749bf47f916af1a8f0" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "de7058bea02b4b65a09764b13ac4b0a5" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "8847c8d1b68742c5aad11da0cb431f31" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "4c0a154dfc0844cd9ea65a97282850c0" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7c96104fa32948baad8bdf7a97759dda" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "e035e61e3fe04e14a3201d4104208093" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "2629db7409624e60957897b05c5bee23" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Analyst" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Analyst" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "aa0c5d044f6e4b328b4369c4cec0989a" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "08f0d6ea9ae545ef949e9edb1b399fb1" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-118" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-133" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f3019333aae7bb4d5d2900" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| }, | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7b16203f01f301a0f9e1e6bb4d5d2700" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "f64fb3bd8d264478b3706010329f2db1" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7e1c5e73b2de4667a42041d1f9d3eef9" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Executive" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Executive" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a703bd9fcbd8483e98a53c5d7f0cd60a" | |
| } | |
| ], | |
| "name": "2" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "11b25ac647c510257fc787d6dd420c3a" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "0244bb7aa1064b62a6e651f621bc3de6" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "11b25ac647c510257fc787cb774a0c38" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a656bf2a1063d0c64" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "ca1f13433035479ab0eea227e4ac8b9e" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a656bf299d6650c63" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a2c46f1a10d710449ac0d6cf1bdd0248" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "USER-BASED_SECURITY_GROUP-16-98" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a656bf292aa750c62" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a2c46f1a10d710449ac0d6a0cc650247" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a2c46f1a10d710449a69e6c1366d0246" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5403216f5ef8103816b45819f13d04d8" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5403216f5ef8103816b457f5429d04d7" | |
| } | |
| ], | |
| "name": "4" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "b7cc102bda5b43e19c658fef8d510b21" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "dc483d7547274c00b4c13532d35620bb" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "NDA" | |
| }, | |
| { | |
| "children": [], | |
| "name": "OFFER-LETTER" | |
| }, | |
| { | |
| "children": [], | |
| "name": "CW-CONTRACT" | |
| } | |
| ], | |
| "name": "0016afb71bd110000cee929b6a010058" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "3ab36e0cde4344efb3fcc650579f6651" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "2e92ea9aef004c6bb7191637966da0ba" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "11b25ac647c510257fd3e3fcca8a0c3c" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "3cbe96e7646d49188d0df3e910c595f0" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Compensation_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Compensation_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "2461c4b2a5c54f119d9ba8174c203c63" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a2c46f1a10d710449b8a78113895024e" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a2c46f1a10d710449b71cb95665d024d" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "a2c46f1a10d710449b611d83a4bd024c" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "1da763b87b6c103c0ec31e82047d1b76" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "7ed59f5277aa412687358dce2fe831db" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "0f36c3d801c11025ce173bbb4b7a0ed2" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ADMISSIONS_DATA_ENTRY_SPECIALIST_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "0f36c3d801c11025ce0e1d19012a0ed1" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "d27e9782ff194dd89097baafb805c7c9" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a666bd7fb7ab50ce1" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "b019aa81b8664c0f9e5c5fa92ede9cfe" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "e547de1402ec4be7a3b4ed8f6ccaec6e" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_MANAGER_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a66b87e9d4b1d0ce3" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "STUDENT_RECRUITING_ANALYST_BY_AU" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a6689b44151350ce2" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Absence_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Absence_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "3ad2efeb8bd94ab384ff2daa6ee3e4a2" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "6f07349f00e54aa9a57d6b5e077865ed" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "EXTERNAL_PAYROLL" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008eebdc90cda459f" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "EXTERNAL_PAYROLL" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008eebdc90cda459f" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5bcec92217ec4294a850597460eec8ed" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "6d0822c85ef44a5fbd24715075f01987" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5403216f5ef81038166abb9d679d04d6" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "20ca85f57d4b105a63fb68b5e4f50c42" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "6c7560e67e5e48ab96d1d9aa33dfa1f6" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "9320ea3a34001018551857bdfb4a200f" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "CERT" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ED-REIMB" | |
| }, | |
| { | |
| "children": [], | |
| "name": "TRANSFER" | |
| }, | |
| { | |
| "children": [], | |
| "name": "PROMOTION" | |
| }, | |
| { | |
| "children": [], | |
| "name": "TERM" | |
| }, | |
| { | |
| "children": [], | |
| "name": "COMP" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HIRE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "LICENSE" | |
| } | |
| ], | |
| "name": "0016afb71bd110000cee929b6a010058" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "cc2c7fdf6ad249a7a6df1baade40abc7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "c087f59a269c4f72a655ec8455fde203" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "EXTERNAL_PAYROLL" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008eebdc90cda459f" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "EXTERNAL_PAYROLL" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008eebdc90cda459f" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "41b4436b31f0464ca720bc7809971ded" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "8d9435a66f9a431ab5377671801b9841" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Security_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "026bb35a33cc4919a8e3b54bc9daabe0" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "LICENSE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "MARITAL" | |
| }, | |
| { | |
| "children": [], | |
| "name": "NAME-CHANGE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HIRE" | |
| }, | |
| { | |
| "children": [], | |
| "name": "COMP" | |
| }, | |
| { | |
| "children": [], | |
| "name": "TERM" | |
| }, | |
| { | |
| "children": [], | |
| "name": "TRANSFER" | |
| }, | |
| { | |
| "children": [], | |
| "name": "PROMOTION" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ED-REIMB" | |
| }, | |
| { | |
| "children": [], | |
| "name": "PERS-INFO" | |
| }, | |
| { | |
| "children": [], | |
| "name": "CERT" | |
| } | |
| ], | |
| "name": "0016afb71bd110000cee929b6a010058" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "248ca3bae8bd4b899df423ea516926bf" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "EMPL-ELIG" | |
| } | |
| ], | |
| "name": "0016afb71bd110000cee929b6a010058" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "e24eb3025ff549ffb2b84fc1587976e6" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "dd4fd07a6910491bae89c00c83fc3670" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5403216f5ef8103816dce21ba04d04da" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "ID-VERIFY" | |
| }, | |
| { | |
| "children": [], | |
| "name": "PIM-VERIFY" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ADDR-VERIFY" | |
| } | |
| ], | |
| "name": "0016afb71bd110000cee929b6a010058" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "f75f8545eaab46f190baf99f435ecbf0" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "ALL" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008e7f49357c443e7" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "5403216f5ef8103816d48ded04b504d9" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "OTHER" | |
| } | |
| ], | |
| "name": "0016afb71bd110000cee929b6a010058" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "df720619622042e9a09eb58d56c5d0f7" | |
| } | |
| ], | |
| "name": "3" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Auditor" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Integration_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_System" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Benefits_System" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_System" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Benefits_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-4-11" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-27" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-29" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-28" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-19" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-1-18" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_System" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008ecf32163134521" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Partner_By_Location" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Management_Chain" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-124" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Analyst" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Executive" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Benefits_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-4-99" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "SERVICE_CENTER_SECURITY_GROUP__CONSTRAINED_-10-1" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f11046ebf54637" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Chief_Executive_Officer_jobGroup" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008ed6e504cec4545" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-172" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-171" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-170" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-169" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-168" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-167" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-166" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-165" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-164" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-163" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-162" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-161" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-160" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-159" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-158" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Absence_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-157" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_All_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-156" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_All_Categories_View_Only" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-155" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-154" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Benefits_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Compensation_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-153" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Manager_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-152" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Dcouments_Payroll_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-151" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-150" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-149" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0efe5bc114631" | |
| } | |
| ], | |
| "name": "TREE_CRAWL_DEPENDENCY" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Chief_Executive_Officer_jobGroup" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008ed6e504cec4545" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "SERVICE_CENTER_SECURITY_GROUP__CONSTRAINED_-10-1" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f11046ebf54637" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "HR_Partner_By_Location" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Management_Chain" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-16-124" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Analyst" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Executive" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Manager" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Benefits_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "ROLE-BASED_SECURITY_GROUP__CONSTRAINED_-4-99" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Partner" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Partner" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0c89500b94627" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-172" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-171" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-170" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-169" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-168" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-167" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-166" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-165" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-164" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-163" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-162" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-161" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-160" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-159" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-158" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-157" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Absence_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-156" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_All_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-155" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_All_Categories_View_Only" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Benefits_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-154" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-153" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Compensation_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-152" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Documents_Manager_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-151" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Dcouments_Payroll_Categories" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-150" | |
| }, | |
| { | |
| "children": [], | |
| "name": "SEGMENT-BASED_SECURITY_GROUP-16-149" | |
| }, | |
| { | |
| "children": [] | |
| }, | |
| { | |
| "children": [] | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f0efe5bc114631" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-4-11" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-27" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-29" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-28" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-16-19" | |
| }, | |
| { | |
| "children": [], | |
| "name": "INTEGRATION_SYSTEM_SECURITY_GROUP__UNCONSTRAINED_-1-18" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_System" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008ecf32163134521" | |
| }, | |
| { | |
| "children": [ | |
| { | |
| "children": [], | |
| "name": "Payroll_Interface_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Auditor" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Integration_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_Administrator" | |
| }, | |
| { | |
| "children": [], | |
| "name": "HR_System" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Benefits_System" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Payroll_System" | |
| }, | |
| { | |
| "children": [], | |
| "name": "Benefits_Administrator" | |
| } | |
| ], | |
| "name": "6291e37ad8d4100008f2bb034d3546a7" | |
| } | |
| ], | |
| "name": "ALL" | |
| } | |
| ], | |
| "name": "XML DATA HERE" | |
| } | |
| ], | |
| "name": "ebe5f56861ed470d8ead725c53195cbe" | |
| } | |
| ], | |
| "name": "1" | |
| } | |
| ], | |
| "name": "4" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment