[{"data":1,"prerenderedAt":1815},["Reactive",2],{"$2rKt39NLoP":3,"$rJeHEaTi23":86,"$pvlFnLIETK":103,"$peAOkyx5R9":124,"$Jw2NwQfRzY":595},{"title":4,"content":5,"toc":6,"section":79},"TWS/IWS - IBM Tivoli Workload Scheduler","\u003Cp>\u003Cstrong>IBM Tivoli Workload Scheduler (TWS)\u003C/strong>, also known as IBM Workload Automation (IWA), is an enterprise job scheduling platform that automates the scheduling, monitoring, and management of batch processing workflows on IBM z/OS mainframe systems. TWS files use a batch loader format with keyword-based statements such as \u003Ccode>ADDEF\u003C/code>, \u003Ccode>ADSTART\u003C/code>, \u003Ccode>ADOP\u003C/code>, \u003Ccode>ADDEP\u003C/code>, and \u003Ccode>JOBREC\u003C/code>.\u003C/p>\u003Cp>The extracted TWS scheduler follows a batch loader text format with a structured layout as the following example.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADDEF\n  ADID(PAYROLL)\n  GROUP(FINANCE)\nADOP\n  OPNO(1)\n  JOBN(EXTRACT)\n  WSID(CPU1)\nADOP\n  OPNO(2)\n  JOBN(COMPUTE)\n  WSID(CPU1)\n  PREJOBN(EXTRACT)\nADOP\n  OPNO(3)\n  JOBN(REPORT)\n  WSID(CPU1)\n  PREJOBN(COMPUTE)\u003C/code>\u003C/pre>\u003Cp>Based on the example above, job dependencies are as follows:\u003C/p>\u003Ch2 id=\"job-stream-definition\">Job stream definition\u003C/h2>\u003Cp>\u003Ccode>ADDEF\u003C/code> (short form) or \u003Ccode>ADSTART\u003C/code> (full form) defines a job stream header. A job stream is an organizational structure that groups related operations together.\u003C/p>\u003Ch3 id=\"adid\">ADID\u003C/h3>\u003Cp>Attribute \u003Ccode>ADID\u003C/code> states the unique identifier of the job stream. All subsequent \u003Ccode>ADOP\u003C/code> and \u003Ccode>ADDEP\u003C/code> statements belong to this job stream until the next \u003Ccode>ADDEF\u003C/code> or \u003Ccode>ADSTART\u003C/code> is encountered.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADDEF\n  ADID(PAYROLL)\n  GROUP(FINANCE)\u003C/code>\u003C/pre>\u003Cp>A single TWS file can contain multiple job streams.\u003C/p>\u003Ch2 id=\"operation-definition\">Operation definition\u003C/h2>\u003Cp>\u003Ccode>ADOP\u003C/code> defines an operation (a scheduled task) within the current job stream. Each operation represents a unit of work to be executed. On z/OS computer workstations, the \u003Ccode>JOBN\u003C/code> value implicitly identifies the JCL member to be submitted.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADOP\n  OPNO(2)\n  JOBN(COMPUTE)\n  WSID(CPU1)\n  PREJOBN(EXTRACT)\u003C/code>\u003C/pre>\u003Ch3 id=\"jobn\">JOBN\u003C/h3>\u003Cp>Attribute \u003Ccode>JOBN\u003C/code> states the job name of the operation. On z/OS, this is also the JCL member name that the scheduler submits. To make it unique throughout the dependency analysis, the scheduled task name is a combination of the job stream name (\u003Ccode>ADID\u003C/code>), the job name (\u003Ccode>JOBN\u003C/code>), and the scheduler file name.&nbsp;&nbsp;\u003Cbr>For example, assuming the TWS scheduler file name is: \u003Ccode>payroll.tws\u003C/code> and the content is shown above, then the first scheduled task name is: \u003Ccode>PAYROLL-EXTRACT-payroll.tws\u003C/code>.\u003C/p>\u003Ch3 id=\"opno\">OPNO\u003C/h3>\u003Cp>Attribute \u003Ccode>OPNO\u003C/code> states the operation number within the job stream (range 1 to 255). Each operation within a job stream must have a unique number. Operation numbers are used for predecessor resolution via \u003Ccode>PREOPNO\u003C/code>.\u003C/p>\u003Ch3 id=\"wsid\">WSID\u003C/h3>\u003Cp>Attribute \u003Ccode>WSID\u003C/code> states the workstation identifier where the operation runs. Sentinel operations with \u003Ccode>WSID(ON)\u003C/code> or \u003Ccode>WSID(OFF)\u003C/code> mark the start and end of a job stream and are excluded from JCL linking.\u003C/p>\u003Ch3 id=\"prejobn\">PREJOBN\u003C/h3>\u003Cp>Attribute \u003Ccode>PREJOBN\u003C/code> states the predecessor job name. It builds a link between the predecessor operation and the current operation. When the predecessor exists in the file, an \"Exec Next Scheduled Task\" edge is created from the predecessor to the current operation. When the predecessor is not found, a \"Missing Scheduled Task\" edge is created.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADOP\n  OPNO(2)\n  JOBN(COMPUTE)\n  WSID(CPU1)\n  PREJOBN(EXTRACT)\u003C/code>\u003C/pre>\u003Cp>In the example above, operation \u003Ccode>EXTRACT\u003C/code> triggers operation \u003Ccode>COMPUTE\u003C/code>.\u003C/p>\u003Ch3 id=\"preopno\">PREOPNO\u003C/h3>\u003Cp>Attribute \u003Ccode>PREOPNO\u003C/code> states the predecessor operation number. It is resolved to a job name within the current job stream.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADOP\n  OPNO(010)\n  JOBN(STEP1)\n  WSID(CPU1)\nADOP\n  OPNO(020)\n  JOBN(STEP2)\n  WSID(CPU1)\n  PREOPNO(010)\u003C/code>\u003C/pre>\u003Cp>In the example above, \u003Ccode>STEP2\u003C/code> depends on \u003Ccode>STEP1\u003C/code> because \u003Ccode>PREOPNO(010)\u003C/code> resolves to \u003Ccode>JOBN(STEP1)\u003C/code>.\u003C/p>\u003Ch3 id=\"jcl-link\">JCL link\u003C/h3>\u003Cp>For every \u003Ccode>ADOP\u003C/code> operation on a non-sentinel workstation (\u003Ccode>WSID\u003C/code> is not \u003Ccode>ON\u003C/code> or \u003Ccode>OFF\u003C/code>), the \u003Ccode>JOBN\u003C/code> value creates an implicit \u003Ccode>Exec JCL\u003C/code> dependency edge. This reflects the z/OS behavior where the scheduler submits the JCL member matching the job name.\u003C/p>\u003Ch2 id=\"dependency-declaration\">Dependency declaration\u003C/h2>\u003Cp>\u003Ccode>ADDEP\u003C/code> declares a predecessor dependency for the most recently defined operation (the last \u003Ccode>ADOP\u003C/code>). It is used in the full-form batch loader format as a separate block after \u003Ccode>ADOP\u003C/code>.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADOP\n  OPNO(010)\n  JOBN(JOBSTEP1)\n  WSID(CPU1)\nADDEP\n  PREOPNO(001)\n  PREWSID(ON)\u003C/code>\u003C/pre>\u003Ch3 id=\"preopno-in-addep\">PREOPNO (in ADDEP)\u003C/h3>\u003Cp>Attribute \u003Ccode>PREOPNO\u003C/code> states the predecessor operation number. It is resolved to a job name using the \u003Ccode>OPNO\u003C/code>-to-\u003Ccode>JOBN\u003C/code> mapping.\u003C/p>\u003Ch3 id=\"prejobn-in-addep\">PREJOBN (in ADDEP)\u003C/h3>\u003Cp>Attribute \u003Ccode>PREJOBN\u003C/code> states the predecessor job name directly.\u003C/p>\u003Ch3 id=\"preadid\">PREADID\u003C/h3>\u003Cp>Attribute \u003Ccode>PREADID\u003C/code> states the job stream of the predecessor, enabling cross-stream dependency declarations. When absent, the current job stream is assumed.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADDEP\n  PREJOBN(STEP_A1)\n  PREADID(STREAM_A)\n  PREWSID(CPU1)\u003C/code>\u003C/pre>\u003Cp>In the example above, the current operation depends on \u003Ccode>STEP_A1\u003C/code> from job stream \u003Ccode>STREAM_A\u003C/code>.\u003C/p>\u003Ch2 id=\"end-to-end-agent-jobs\">End-to-end agent jobs\u003C/h2>\u003Cp>\u003Ccode>JOBREC\u003C/code> defines an end-to-end agent job record, used for operations running on distributed (non-z/OS) workstations. \u003Ccode>SCRIPTNAME\u003C/code>, \u003Ccode>DOCOMMAND\u003C/code>, and \u003Ccode>JOBCMD\u003C/code> are valid only within \u003Ccode>JOBREC\u003C/code> blocks, not in \u003Ccode>ADOP\u003C/code>.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">//JOBREC\n  JOBCMD(MYPGM)\n  SCRIPTNAME(MYSCRIPT)\u003C/code>\u003C/pre>\u003Ch3 id=\"jobcmd\">JOBCMD\u003C/h3>\u003Cp>Attribute \u003Ccode>JOBCMD\u003C/code> specifies the job command type and implies a link from the current operation to a program. It creates an \"Exec Program\" dependency edge.\u003C/p>\u003Ch3 id=\"docommand\">DOCOMMAND\u003C/h3>\u003Cp>Attribute \u003Ccode>DOCOMMAND\u003C/code> specifies the command or program to execute on a distributed agent. It creates an \"Exec Program\" dependency edge.\u003C/p>\u003Ch3 id=\"scriptname\">SCRIPTNAME\u003C/h3>\u003Cp>Attribute \u003Ccode>SCRIPTNAME\u003C/code> specifies the script file to execute on a distributed agent. It creates an \"Exec JCL\" dependency edge.\u003C/p>\u003Ch2 id=\"cross-stream-dependencies\">Cross-stream dependencies\u003C/h2>\u003Cp>Predecessor references are resolved across all job streams in the file. If \u003Ccode>PREJOBN\u003C/code> references a job name defined in a different job stream, the dependency is correctly linked.\u003C/p>\u003Cpre>\u003Ccode class=\"language-plaintext\">ADDEF\n  ADID(BATCH1)\nADOP\n  OPNO(1)\n  JOBN(LOAD)\n  WSID(CPU1)\nADDEF\n  ADID(BATCH2)\nADOP\n  OPNO(1)\n  JOBN(VALIDATE)\n  WSID(CPU2)\n  PREJOBN(LOAD)\u003C/code>\u003C/pre>\u003Cp>In the example above, \u003Ccode>LOAD\u003C/code> (from \u003Ccode>BATCH1\u003C/code>) triggers \u003Ccode>VALIDATE\u003C/code> (from \u003Ccode>BATCH2\u003C/code>) as a cross-stream \"Exec Next Scheduled Task\" edge.\u003C/p>",[7,15,43,59,75],{"title":8,"anchor":9,"children":10},"Job stream definition","#job-stream-definition",[11],{"title":12,"anchor":13,"children":14},"ADID","#adid",[],{"title":16,"anchor":17,"children":18},"Operation definition","#operation-definition",[19,23,27,31,35,39],{"title":20,"anchor":21,"children":22},"JOBN","#jobn",[],{"title":24,"anchor":25,"children":26},"OPNO","#opno",[],{"title":28,"anchor":29,"children":30},"WSID","#wsid",[],{"title":32,"anchor":33,"children":34},"PREJOBN","#prejobn",[],{"title":36,"anchor":37,"children":38},"PREOPNO","#preopno",[],{"title":40,"anchor":41,"children":42},"JCL link","#jcl-link",[],{"title":44,"anchor":45,"children":46},"Dependency declaration","#dependency-declaration",[47,51,55],{"title":48,"anchor":49,"children":50},"PREOPNO (in ADDEP)","#preopno-in-addep",[],{"title":52,"anchor":53,"children":54},"PREJOBN (in ADDEP)","#prejobn-in-addep",[],{"title":56,"anchor":57,"children":58},"PREADID","#preadid",[],{"title":60,"anchor":61,"children":62},"End-to-end agent jobs","#end-to-end-agent-jobs",[63,67,71],{"title":64,"anchor":65,"children":66},"JOBCMD","#jobcmd",[],{"title":68,"anchor":69,"children":70},"DOCOMMAND","#docommand",[],{"title":72,"anchor":73,"children":74},"SCRIPTNAME","#scriptname",[],{"title":76,"anchor":77,"children":78},"Cross-stream dependencies","#cross-stream-dependencies",[],{"data":80},{"id":81,"attributes":82},8,{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},"Mainframe",18,"2023-06-26T15:50:53.469Z",{"previous":87,"next":95},{"id":88,"title":89,"slug":90,"order":91,"section":92},44,"ASM (Assembly Language)","codebase-dependencies-languages-asm",1,{"data":93},{"id":81,"attributes":94},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":96,"title":97,"slug":98,"order":99,"section":100},194,"CA7","codebase-dependencies-languages-ca7",3,{"data":101},{"id":81,"attributes":102},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":104,"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108,"parent":109,"illustration":111},28,"AWS Transform for mainframe refactor","2023-11-20T08:17:09.011Z","2026-02-09T14:30:50.610Z","2023-11-20T08:17:19.855Z",{"data":110},null,{"data":112},{"id":113,"attributes":114},859,{"name":115,"alternativeText":110,"caption":110,"width":116,"height":116,"formats":110,"hash":117,"ext":118,"mime":119,"size":120,"url":121,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":123,"updatedAt":123},"atxrefactorlogo-small.svg",100,"atxrefactorlogo_small_0547b31374",".svg","image/svg+xml",2.89,"/uploads/atxrefactorlogo_small_0547b31374.svg","local","2026-02-09T14:28:04.227Z",[125,134,142,151,161,170,179,189,194,204,214,222,231,240,249,257,265,273,283,293,301,308,327,332,348,364,374,384,394,402,410,420,428,459,468,478,487,497,515,525,535,545,555,565,575,585],{"id":91,"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129,"parent":130,"illustration":133},"Quick Start","2023-06-26T15:50:53.431Z","2023-11-20T10:44:24.608Z","2023-06-26T15:50:53.430Z",{"data":131},{"id":104,"attributes":132},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":135,"name":136,"order":91,"createdAt":137,"updatedAt":137,"publishedAt":137,"parent":138,"illustration":141},2,"My Stuff","2023-06-26T15:50:53.435Z",{"data":139},{"id":91,"attributes":140},{"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129},{"data":110},{"id":99,"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146,"parent":147,"illustration":150},"Codebase","2023-06-26T15:50:53.440Z","2023-11-20T10:44:37.833Z","2023-06-26T15:50:53.439Z",{"data":148},{"id":104,"attributes":149},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":152,"name":153,"order":154,"createdAt":155,"updatedAt":155,"publishedAt":156,"parent":157,"illustration":160},4,"Assets",14,"2023-06-26T15:50:53.445Z","2023-06-26T15:50:53.444Z",{"data":158},{"id":99,"attributes":159},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":162,"name":163,"order":164,"createdAt":165,"updatedAt":165,"publishedAt":165,"parent":166,"illustration":169},5,"Classification",15,"2023-06-26T15:50:53.449Z",{"data":167},{"id":99,"attributes":168},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":171,"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174,"parent":175,"illustration":178},6,"Dependencies",16,"2023-06-26T15:50:53.454Z",{"data":176},{"id":99,"attributes":177},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":180,"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184,"parent":185,"illustration":188},7,"Languages",17,"2023-06-26T15:50:53.461Z","2023-06-26T15:50:53.460Z",{"data":186},{"id":171,"attributes":187},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"data":110},{"id":81,"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85,"parent":190,"illustration":193},{"data":191},{"id":180,"attributes":192},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"data":110},{"id":195,"name":196,"order":197,"createdAt":198,"updatedAt":198,"publishedAt":199,"parent":200,"illustration":203},9,"Extractions",19,"2023-06-26T15:50:53.474Z","2023-06-26T15:50:53.473Z",{"data":201},{"id":99,"attributes":202},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":205,"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209,"parent":210,"illustration":213},10,"Management",20,"2023-06-26T15:50:53.478Z","2023-06-26T15:50:53.477Z",{"data":211},{"id":99,"attributes":212},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":215,"name":136,"order":216,"createdAt":217,"updatedAt":217,"publishedAt":217,"parent":218,"illustration":221},11,21,"2023-06-26T15:50:53.482Z",{"data":219},{"id":99,"attributes":220},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":223,"name":224,"order":225,"createdAt":226,"updatedAt":226,"publishedAt":226,"parent":227,"illustration":230},12,"Settings",22,"2023-06-26T15:50:53.487Z",{"data":228},{"id":99,"attributes":229},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"data":110},{"id":164,"name":232,"order":171,"createdAt":233,"updatedAt":234,"publishedAt":235,"parent":236,"illustration":239},"Versions Manager","2023-06-26T15:50:53.501Z","2023-11-20T10:45:26.574Z","2023-06-26T15:50:53.500Z",{"data":237},{"id":104,"attributes":238},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":197,"name":241,"order":195,"createdAt":242,"updatedAt":243,"publishedAt":244,"parent":245,"illustration":248},"System Utilities","2023-06-26T15:50:53.523Z","2023-11-20T10:46:09.802Z","2023-06-26T15:50:53.522Z",{"data":246},{"id":104,"attributes":247},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":207,"name":250,"order":205,"createdAt":251,"updatedAt":252,"publishedAt":251,"parent":253,"illustration":256},"Secured Spaces","2023-06-26T15:50:53.527Z","2023-11-20T10:46:19.365Z",{"data":254},{"id":104,"attributes":255},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":216,"name":258,"order":215,"createdAt":259,"updatedAt":260,"publishedAt":259,"parent":261,"illustration":264},"Transformation Center","2023-06-26T15:50:53.532Z","2023-11-20T10:46:28.664Z",{"data":262},{"id":104,"attributes":263},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":225,"name":266,"order":91,"createdAt":267,"updatedAt":267,"publishedAt":268,"parent":269,"illustration":272},"Inputs","2023-06-26T15:50:53.538Z","2023-06-26T15:50:53.537Z",{"data":270},{"id":216,"attributes":271},{"name":258,"order":215,"createdAt":259,"updatedAt":260,"publishedAt":259},{"data":110},{"id":274,"name":275,"order":135,"createdAt":276,"updatedAt":277,"publishedAt":278,"parent":279,"illustration":282},23,"Transform","2023-06-26T15:50:53.544Z","2026-03-02T05:57:00.921Z","2023-06-26T15:50:53.543Z",{"data":280},{"id":216,"attributes":281},{"name":258,"order":215,"createdAt":259,"updatedAt":260,"publishedAt":259},{"data":110},{"id":284,"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287,"parent":289,"illustration":292},24,"FAQ",13,"2023-06-26T15:50:53.550Z","2025-01-22T13:24:15.829Z",{"data":290},{"id":104,"attributes":291},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":294,"name":143,"order":135,"createdAt":295,"updatedAt":295,"publishedAt":296,"parent":297,"illustration":300},25,"2023-06-26T15:50:53.556Z","2023-06-26T15:50:53.555Z",{"data":298},{"id":284,"attributes":299},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"data":110},{"id":302,"name":258,"order":99,"createdAt":303,"updatedAt":303,"publishedAt":303,"parent":304,"illustration":307},26,"2023-06-26T15:50:53.560Z",{"data":305},{"id":284,"attributes":306},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"data":110},{"id":309,"name":310,"order":135,"createdAt":311,"updatedAt":312,"publishedAt":313,"parent":314,"illustration":315},27,"Terminals","2023-09-25T15:13:37.444Z","2023-11-27T16:48:37.421Z","2023-09-25T15:14:00.088Z",{"data":110},{"data":316},{"id":317,"attributes":318},512,{"name":319,"alternativeText":110,"caption":110,"width":320,"height":320,"formats":110,"hash":321,"ext":322,"mime":323,"size":324,"url":325,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":326,"updatedAt":326},"terminals.png",96,"terminals_c75070d253",".png","image/png",0.69,"/uploads/terminals_c75070d253.png","2023-11-27T16:48:25.157Z",{"id":104,"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108,"parent":328,"illustration":329},{"data":110},{"data":330},{"id":113,"attributes":331},{"name":115,"alternativeText":110,"caption":110,"width":116,"height":116,"formats":110,"hash":117,"ext":118,"mime":119,"size":120,"url":121,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":123,"updatedAt":123},{"id":333,"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337,"parent":338,"illustration":339},29,"Compare Tool","2023-11-20T08:17:29.993Z","2023-11-27T16:52:32.999Z","2023-11-20T08:17:47.161Z",{"data":110},{"data":340},{"id":341,"attributes":342},513,{"name":343,"alternativeText":110,"caption":110,"width":320,"height":320,"formats":110,"hash":344,"ext":322,"mime":323,"size":345,"url":346,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":347,"updatedAt":347},"comparetool.png","comparetool_a3ff4f885f",0.9,"/uploads/comparetool_a3ff4f885f.png","2023-11-27T16:52:30.934Z",{"id":349,"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353,"parent":354,"illustration":355},30,"Data Migrator","2023-11-20T08:17:39.967Z","2023-11-27T18:54:11.214Z","2023-11-20T08:17:40.811Z",{"data":110},{"data":356},{"id":357,"attributes":358},514,{"name":359,"alternativeText":110,"caption":110,"width":320,"height":320,"formats":110,"hash":360,"ext":322,"mime":323,"size":361,"url":362,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":363,"updatedAt":363},"data-migrator.png","data_migrator_33bbf672e8",0.97,"/uploads/data_migrator_33bbf672e8.png","2023-11-27T16:57:15.889Z",{"id":365,"name":366,"order":91,"createdAt":367,"updatedAt":368,"publishedAt":369,"parent":370,"illustration":373},32,"Comparisons","2023-11-28T13:54:11.684Z","2023-11-28T15:24:37.434Z","2023-11-28T14:49:13.555Z",{"data":371},{"id":333,"attributes":372},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"data":110},{"id":375,"name":376,"order":223,"createdAt":377,"updatedAt":378,"publishedAt":379,"parent":380,"illustration":383},35,"Toolbox","2023-12-21T10:41:07.961Z","2026-03-05T15:17:00.268Z","2023-12-21T10:41:26.458Z",{"data":381},{"id":104,"attributes":382},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":110},{"id":385,"name":386,"order":91,"createdAt":387,"updatedAt":388,"publishedAt":389,"parent":390,"illustration":393},37,"Account","2023-12-29T15:44:49.121Z","2023-12-29T15:47:20.435Z","2023-12-29T15:46:27.010Z",{"data":391},{"id":284,"attributes":392},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"data":110},{"id":395,"name":396,"order":180,"createdAt":397,"updatedAt":398,"publishedAt":399,"parent":400,"illustration":401},38,"AWS Blu Age Runtime","2024-02-07T15:17:36.040Z","2025-09-18T14:27:47.773Z","2025-09-18T14:27:47.770Z",{"data":110},{"data":110},{"id":403,"name":404,"order":81,"createdAt":405,"updatedAt":406,"publishedAt":407,"parent":408,"illustration":409},39,"Blu Age Refactoring Tool","2024-02-08T16:18:18.594Z","2024-02-08T16:19:26.523Z","2024-02-08T16:19:26.520Z",{"data":110},{"data":110},{"id":411,"name":412,"order":135,"createdAt":413,"updatedAt":414,"publishedAt":415,"parent":416,"illustration":419},40,"Release","2024-03-18T14:45:05.158Z","2025-04-08T08:58:57.996Z","2024-06-24T11:34:42.987Z",{"data":417},{"id":333,"attributes":418},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"data":110},{"id":421,"name":412,"order":152,"createdAt":422,"updatedAt":423,"publishedAt":415,"parent":424,"illustration":427},41,"2024-03-18T14:45:59.776Z","2025-02-24T09:50:39.647Z",{"data":425},{"id":349,"attributes":426},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"data":110},{"id":429,"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415,"parent":433,"illustration":436},43,"Generative AI","2024-06-11T13:55:19.398Z","2024-06-24T10:14:00.993Z",{"data":434},{"id":104,"attributes":435},{"name":105,"order":91,"createdAt":106,"updatedAt":107,"publishedAt":108},{"data":437},{"id":438,"attributes":439},602,{"name":440,"alternativeText":110,"caption":110,"width":317,"height":317,"formats":441,"hash":454,"ext":322,"mime":323,"size":455,"url":456,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":457,"updatedAt":458},"ai.png",{"thumbnail":442,"small":448},{"name":443,"hash":444,"ext":322,"mime":323,"path":110,"width":445,"height":445,"size":446,"url":447},"thumbnail_ai.png","thumbnail_ai_986808fc07",156,7.77,"/uploads/thumbnail_ai_986808fc07.png",{"name":449,"hash":450,"ext":322,"mime":323,"path":110,"width":451,"height":451,"size":452,"url":453},"small_ai.png","small_ai_986808fc07",500,28.94,"/uploads/small_ai_986808fc07.png","ai_986808fc07",3.94,"/uploads/ai_986808fc07.png","2024-06-10T14:38:54.460Z","2024-06-17T08:39:57.404Z",{"id":88,"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463,"parent":464,"illustration":467},"Refactoring Toolkit","2025-01-09T15:44:07.662Z","2025-01-24T11:28:35.755Z","2025-01-22T13:32:24.314Z",{"data":465},{"id":216,"attributes":466},{"name":258,"order":215,"createdAt":259,"updatedAt":260,"publishedAt":259},{"data":110},{"id":469,"name":470,"order":135,"createdAt":471,"updatedAt":472,"publishedAt":473,"parent":474,"illustration":477},45,"Additional Features","2025-02-27T14:37:18.210Z","2025-02-27T15:23:16.770Z","2025-02-27T14:39:27.180Z",{"data":475},{"id":349,"attributes":476},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"data":110},{"id":479,"name":285,"order":99,"createdAt":480,"updatedAt":481,"publishedAt":482,"parent":483,"illustration":486},46,"2025-02-27T14:46:51.915Z","2025-02-27T14:46:57.463Z","2025-02-27T14:46:57.460Z",{"data":484},{"id":349,"attributes":485},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"data":110},{"id":488,"name":489,"order":91,"createdAt":490,"updatedAt":491,"publishedAt":492,"parent":493,"illustration":496},47,"Migration Steps","2025-02-27T15:23:58.787Z","2025-02-27T15:24:00.491Z","2025-02-27T15:24:00.487Z",{"data":494},{"id":349,"attributes":495},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"data":110},{"id":498,"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502,"parent":503,"illustration":504},48,"AWS Transform for mainframe Standard Delivery Environment (SDE)","2026-01-09T15:36:37.663Z","2026-04-14T14:27:17.281Z","2026-01-23T09:20:10.689Z",{"data":110},{"data":505},{"id":506,"attributes":507},1294,{"name":508,"alternativeText":110,"caption":110,"width":320,"height":509,"formats":110,"hash":510,"ext":322,"mime":323,"size":511,"url":512,"previewUrl":110,"provider":122,"provider_metadata":110,"createdAt":513,"updatedAt":514},"aws-sde-logo_96.png",97,"aws_sde_logo_96_c77cf06916",1.48,"/uploads/aws_sde_logo_96_c77cf06916.png","2026-02-27T16:44:27.419Z","2026-03-10T15:50:26.490Z",{"id":516,"name":517,"order":91,"createdAt":518,"updatedAt":519,"publishedAt":520,"parent":521,"illustration":524},49,"AWS Transform for mainframe SDE","2026-01-23T10:21:53.936Z","2026-04-14T14:27:05.634Z","2026-01-23T10:21:55.379Z",{"data":522},{"id":498,"attributes":523},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":526,"name":527,"order":99,"createdAt":528,"updatedAt":529,"publishedAt":530,"parent":531,"illustration":534},50,"SDE DevOps Setup (DOS)","2026-01-23T10:36:29.730Z","2026-04-14T14:23:55.318Z","2026-01-23T10:37:45.598Z",{"data":532},{"id":498,"attributes":533},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":536,"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540,"parent":541,"illustration":544},51,"SDE DevOps Pipeline (DOP)","2026-01-23T10:42:15.326Z","2026-04-14T14:23:47.401Z","2026-01-23T10:42:16.609Z",{"data":542},{"id":498,"attributes":543},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":546,"name":547,"order":162,"createdAt":548,"updatedAt":549,"publishedAt":550,"parent":551,"illustration":554},52,"SDE Regression Testing Snapshots (RTS)","2026-01-23T10:43:06.046Z","2026-04-14T14:23:39.112Z","2026-01-23T10:43:08.588Z",{"data":552},{"id":498,"attributes":553},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":556,"name":557,"order":195,"createdAt":558,"updatedAt":559,"publishedAt":560,"parent":561,"illustration":564},53,"Release notes - AWS SDE","2026-01-23T10:43:54.958Z","2026-02-05T11:05:11.488Z","2026-01-23T10:43:56.315Z",{"data":562},{"id":498,"attributes":563},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":566,"name":567,"order":81,"createdAt":568,"updatedAt":569,"publishedAt":570,"parent":571,"illustration":574},54,"Disclaimer","2026-01-30T09:27:12.638Z","2026-01-30T10:45:19.245Z","2026-01-30T09:27:15.388Z",{"data":572},{"id":498,"attributes":573},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":576,"name":577,"order":171,"createdAt":578,"updatedAt":579,"publishedAt":580,"parent":581,"illustration":584},55,"Security","2026-01-30T10:35:46.861Z","2026-03-26T10:40:28.549Z","2026-01-30T10:35:50.667Z",{"data":582},{"id":498,"attributes":583},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},{"id":586,"name":587,"order":135,"createdAt":588,"updatedAt":589,"publishedAt":590,"parent":591,"illustration":594},57,"SDE User guides","2026-01-30T10:53:27.409Z","2026-04-14T14:23:19.425Z","2026-01-30T10:53:28.988Z",{"data":592},{"id":498,"attributes":593},{"name":499,"order":171,"createdAt":500,"updatedAt":501,"publishedAt":502},{"data":110},[596,602,608,615,622,629,636,643,649,655,661,667,673,679,685,692,699,706,712,718,724,730,737,744,751,759,766,774,782,789,797,803,809,815,821,827,834,840,844,850,856,862,868,874,880,886,892,898,904,910,917,923,930,937,944,951,958,965,970,976,982,988,994,1000,1006,1013,1020,1027,1033,1038,1045,1051,1058,1065,1072,1079,1086,1091,1097,1103,1108,1114,1120,1125,1130,1135,1141,1148,1155,1162,1169,1176,1183,1190,1197,1204,1211,1217,1223,1230,1237,1244,1251,1258,1265,1272,1279,1286,1293,1299,1306,1312,1318,1325,1331,1337,1343,1349,1356,1363,1369,1376,1383,1390,1397,1403,1410,1417,1424,1431,1437,1444,1450,1457,1464,1471,1478,1485,1492,1499,1506,1513,1520,1527,1534,1541,1547,1553,1559,1566,1573,1577,1584,1590,1597,1604,1611,1618,1625,1632,1639,1646,1653,1659,1666,1673,1680,1687,1694,1701,1708,1715,1721,1727,1734,1741,1748,1754,1761,1768,1775,1782,1789,1795,1802,1809],{"id":91,"title":597,"slug":598,"order":320,"section":599},"Get Started","quick-start-get-started",{"data":600},{"id":91,"attributes":601},{"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129},{"id":135,"title":603,"slug":604,"order":509,"section":605},"Refactor Builder","refactor-builder",{"data":606},{"id":91,"attributes":607},{"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129},{"id":171,"title":609,"slug":610,"order":611,"section":612},"Documents","quick-start-documents",101,{"data":613},{"id":91,"attributes":614},{"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129},{"id":180,"title":616,"slug":617,"order":618,"section":619},"My Dashboard","quick-start-my-dashboard",102,{"data":620},{"id":91,"attributes":621},{"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129},{"id":81,"title":623,"slug":624,"order":625,"section":626},"Schedule","quick-start-schedule",103,{"data":627},{"id":91,"attributes":628},{"name":126,"order":91,"createdAt":127,"updatedAt":128,"publishedAt":129},{"id":215,"title":630,"slug":631,"order":632,"section":633},"Notifications","quick-start-my-stuff-notifications",94,{"data":634},{"id":135,"attributes":635},{"name":136,"order":91,"createdAt":137,"updatedAt":137,"publishedAt":137},{"id":223,"title":637,"slug":638,"order":639,"section":640},"Dashboards","quick-start-my-stuff-dashboards",95,{"data":641},{"id":135,"attributes":642},{"name":136,"order":91,"createdAt":137,"updatedAt":137,"publishedAt":137},{"id":286,"title":644,"slug":645,"order":91,"section":646},"Create a Project","codebase-create-a-project",{"data":647},{"id":99,"attributes":648},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"id":154,"title":650,"slug":651,"order":135,"section":652},"Cyclomatic Complexity","codebase-cyclomatic-complexity",{"data":653},{"id":99,"attributes":654},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"id":164,"title":656,"slug":657,"order":152,"section":658},"Catch-Up","codebase-catch-up",{"data":659},{"id":99,"attributes":660},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"id":173,"title":662,"slug":663,"order":91,"section":664},"Statistics","codebase-assets-statistics",{"data":665},{"id":152,"attributes":666},{"name":153,"order":154,"createdAt":155,"updatedAt":155,"publishedAt":156},{"id":182,"title":668,"slug":669,"order":135,"section":670},"Files","codebase-assets-files",{"data":671},{"id":152,"attributes":672},{"name":153,"order":154,"createdAt":155,"updatedAt":155,"publishedAt":156},{"id":84,"title":674,"slug":675,"order":99,"section":676},"Homonyms","codebase-assets-homonyms",{"data":677},{"id":152,"attributes":678},{"name":153,"order":154,"createdAt":155,"updatedAt":155,"publishedAt":156},{"id":197,"title":680,"slug":681,"order":152,"section":682},"Workspace","codebase-assets-workspace",{"data":683},{"id":152,"attributes":684},{"name":153,"order":154,"createdAt":155,"updatedAt":155,"publishedAt":156},{"id":207,"title":686,"slug":687,"order":688,"section":689},"Introduction","codebase-classification-introduction",84,{"data":690},{"id":162,"attributes":691},{"name":163,"order":164,"createdAt":165,"updatedAt":165,"publishedAt":165},{"id":216,"title":693,"slug":694,"order":695,"section":696},"Manage Extensions","codebase-classification-manage-extensions",85,{"data":697},{"id":162,"attributes":698},{"name":163,"order":164,"createdAt":165,"updatedAt":165,"publishedAt":165},{"id":225,"title":700,"slug":701,"order":702,"section":703},"Manage Types","codebase-classification-manage-types",86,{"data":704},{"id":162,"attributes":705},{"name":163,"order":164,"createdAt":165,"updatedAt":165,"publishedAt":165},{"id":274,"title":707,"slug":708,"order":91,"section":709},"Visualization and Manipulation","codebase-dependencies-visualization-and-manipulation",{"data":710},{"id":171,"attributes":711},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"id":284,"title":713,"slug":714,"order":135,"section":715},"Link Types","dependencies-link-types",{"data":716},{"id":171,"attributes":717},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"id":294,"title":719,"slug":720,"order":152,"section":721},"Missing Labels","dependencies-missing-labels",{"data":722},{"id":171,"attributes":723},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"id":309,"title":725,"slug":726,"order":171,"section":727},"Show more links","show-more-links",{"data":728},{"id":171,"attributes":729},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"id":104,"title":731,"slug":732,"order":733,"section":734},"C and C++","codebase-dependencies-languages-c-and-cpp",70,{"data":735},{"id":180,"attributes":736},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":333,"title":738,"slug":739,"order":740,"section":741},"SQL","codebase-dependencies-languages-sql",71,{"data":742},{"id":180,"attributes":743},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":349,"title":745,"slug":746,"order":747,"section":748},"PowerBuilder","codebase-dependencies-languages-powerbuilder",72,{"data":749},{"id":180,"attributes":750},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":752,"title":753,"slug":754,"order":755,"section":756},31,"Ideal","codebase-dependencies-languages-ideal",73,{"data":757},{"id":180,"attributes":758},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":365,"title":760,"slug":761,"order":762,"section":763},".NET","codebase-dependencies-languages-net",74,{"data":764},{"id":180,"attributes":765},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":767,"title":768,"slug":769,"order":770,"section":771},33,"PowerHouse","codebase-dependencies-languages-powerhouse",75,{"data":772},{"id":180,"attributes":773},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":775,"title":776,"slug":777,"order":778,"section":779},34,"Natural","codebase-dependencies-languages-natural",76,{"data":780},{"id":180,"attributes":781},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":375,"title":783,"slug":784,"order":785,"section":786},"Delphi","codebase-dependencies-languages-delphi",77,{"data":787},{"id":180,"attributes":788},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":790,"title":791,"slug":792,"order":793,"section":794},36,"Java","codebase-dependencies-languages-java",78,{"data":795},{"id":180,"attributes":796},{"name":181,"order":182,"createdAt":183,"updatedAt":183,"publishedAt":184},{"id":385,"title":798,"slug":799,"order":162,"section":800},"CL","codebase-dependencies-languages-cl",{"data":801},{"id":81,"attributes":802},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":395,"title":804,"slug":805,"order":180,"section":806},"Cobol","codebase-dependencies-languages-cobol",{"data":807},{"id":81,"attributes":808},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":403,"title":810,"slug":811,"order":154,"section":812},"JCL","codebase-dependencies-languages-jcl",{"data":813},{"id":81,"attributes":814},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":411,"title":816,"slug":817,"order":197,"section":818},"OpenVMS","codebase-dependencies-languages-openvms",{"data":819},{"id":81,"attributes":820},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":421,"title":822,"slug":823,"order":207,"section":824},"PL1 – PL I – Programming Language One","codebase-dependencies-languages-pl1-pli-programming-language-one",{"data":825},{"id":81,"attributes":826},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":828,"title":829,"slug":830,"order":216,"section":831},42,"RPG, RPGLE, RPG 400","codebase-dependencies-languages-rpg-rpgle-rpg-400",{"data":832},{"id":81,"attributes":833},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":429,"title":835,"slug":836,"order":225,"section":837},"SCL (Software Control Language)","codebase-dependencies-languages-scl",{"data":838},{"id":81,"attributes":839},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":88,"title":89,"slug":90,"order":91,"section":841},{"data":842},{"id":81,"attributes":843},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":469,"title":845,"slug":846,"order":274,"section":847},"Various Mainframe Dependencies","various-mainframe-dependencies",{"data":848},{"id":81,"attributes":849},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":479,"title":851,"slug":852,"order":195,"section":853},"CSD","csd",{"data":854},{"id":81,"attributes":855},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":488,"title":857,"slug":858,"order":164,"section":859},"Menu","menu",{"data":860},{"id":81,"attributes":861},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":498,"title":863,"slug":864,"order":84,"section":865},"LNK","lnk",{"data":866},{"id":81,"attributes":867},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":516,"title":869,"slug":870,"order":286,"section":871},"IMS","ims",{"data":872},{"id":81,"attributes":873},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":526,"title":875,"slug":876,"order":215,"section":877},"EZT","ezt",{"data":878},{"id":81,"attributes":879},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":536,"title":881,"slug":882,"order":556,"section":883},"Powerbuilder PBL Extraction","codebase-extractions-powerbuilder-pbl-extraction",{"data":884},{"id":195,"attributes":885},{"name":196,"order":197,"createdAt":198,"updatedAt":198,"publishedAt":199},{"id":546,"title":887,"slug":888,"order":566,"section":889},"AS/400 SAVF Extraction","codebase-extractions-savf-extraction",{"data":890},{"id":195,"attributes":891},{"name":196,"order":197,"createdAt":198,"updatedAt":198,"publishedAt":199},{"id":556,"title":893,"slug":894,"order":576,"section":895},"ZIP Extraction","codebase-extractions-zip-extraction",{"data":896},{"id":195,"attributes":897},{"name":196,"order":197,"createdAt":198,"updatedAt":198,"publishedAt":199},{"id":566,"title":899,"slug":900,"order":488,"section":901},"Workpackages","codebase-management-workpackages",{"data":902},{"id":205,"attributes":903},{"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209},{"id":576,"title":905,"slug":906,"order":498,"section":907},"Datasets","codebase-management-datasets",{"data":908},{"id":205,"attributes":909},{"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209},{"id":911,"title":912,"slug":913,"order":516,"section":914},56,"Labels","codebase-management-labels",{"data":915},{"id":205,"attributes":916},{"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209},{"id":586,"title":918,"slug":919,"order":526,"section":920},"Test Scenarios","codebase-management-test-scenarios",{"data":921},{"id":205,"attributes":922},{"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209},{"id":924,"title":925,"slug":926,"order":536,"section":927},58,"Status","codebase-management-status",{"data":928},{"id":205,"attributes":929},{"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209},{"id":931,"title":932,"slug":933,"order":546,"section":934},59,"Timeline","codebase-management-timeline",{"data":935},{"id":205,"attributes":936},{"name":206,"order":207,"createdAt":208,"updatedAt":208,"publishedAt":209},{"id":938,"title":939,"slug":940,"order":479,"section":941},60,"Imports","codebase-my-stuff-imports",{"data":942},{"id":215,"attributes":943},{"name":136,"order":216,"createdAt":217,"updatedAt":217,"publishedAt":217},{"id":945,"title":946,"slug":947,"order":429,"section":948},61,"General details","codebase-settings-general-details",{"data":949},{"id":223,"attributes":950},{"name":224,"order":225,"createdAt":226,"updatedAt":226,"publishedAt":226},{"id":952,"title":953,"slug":954,"order":88,"section":955},62,"Modules","codebase-settings-modules",{"data":956},{"id":223,"attributes":957},{"name":224,"order":225,"createdAt":226,"updatedAt":226,"publishedAt":226},{"id":959,"title":960,"slug":961,"order":469,"section":962},63,"Boosters","codebase-settings-boosters",{"data":963},{"id":223,"attributes":964},{"name":224,"order":225,"createdAt":226,"updatedAt":226,"publishedAt":226},{"id":740,"title":644,"slug":966,"order":767,"section":967},"create-a-project",{"data":968},{"id":164,"attributes":969},{"name":232,"order":171,"createdAt":233,"updatedAt":234,"publishedAt":235},{"id":747,"title":971,"slug":972,"order":775,"section":973},"Comparison","comparison",{"data":974},{"id":164,"attributes":975},{"name":232,"order":171,"createdAt":233,"updatedAt":234,"publishedAt":235},{"id":755,"title":977,"slug":978,"order":375,"section":979},"Impacts","impacts",{"data":980},{"id":164,"attributes":981},{"name":232,"order":171,"createdAt":233,"updatedAt":234,"publishedAt":235},{"id":770,"title":983,"slug":984,"order":91,"section":985},"Terminal emulation","terminals-terminal-emulation",{"data":986},{"id":309,"attributes":987},{"name":310,"order":135,"createdAt":311,"updatedAt":312,"publishedAt":313},{"id":778,"title":989,"slug":990,"order":99,"section":991},"Capture & Replay","terminals-capture-and-replay",{"data":992},{"id":309,"attributes":993},{"name":310,"order":135,"createdAt":311,"updatedAt":312,"publishedAt":313},{"id":785,"title":995,"slug":996,"order":152,"section":997},"Global capture strategy","terminals-global-capture-strategy",{"data":998},{"id":309,"attributes":999},{"name":310,"order":135,"createdAt":311,"updatedAt":312,"publishedAt":313},{"id":1001,"title":686,"slug":1002,"order":302,"section":1003},80,"system-utilities-introduction",{"data":1004},{"id":197,"attributes":1005},{"name":241,"order":195,"createdAt":242,"updatedAt":243,"publishedAt":244},{"id":1007,"title":1008,"slug":1009,"order":225,"section":1010},81,"Create a Secured Space","secured-spaces-create-a-secured-space",{"data":1011},{"id":207,"attributes":1012},{"name":250,"order":205,"createdAt":251,"updatedAt":252,"publishedAt":251},{"id":1014,"title":1015,"slug":1016,"order":274,"section":1017},82,"Upload Content to a Secured Space","shared-spaces-upload-content-to-a-shared-space",{"data":1018},{"id":207,"attributes":1019},{"name":250,"order":205,"createdAt":251,"updatedAt":252,"publishedAt":251},{"id":1021,"title":1022,"slug":1023,"order":284,"section":1024},83,"Manage your Secured Space","shared-spaces-manage-your-shared-space",{"data":1025},{"id":207,"attributes":1026},{"name":250,"order":205,"createdAt":251,"updatedAt":252,"publishedAt":251},{"id":688,"title":1028,"slug":1029,"order":294,"section":1030},"Download content from a Secured Space","shared-spaces-download-content-from-a-shared-space",{"data":1031},{"id":207,"attributes":1032},{"name":250,"order":205,"createdAt":251,"updatedAt":252,"publishedAt":251},{"id":702,"title":644,"slug":1034,"order":207,"section":1035},"transformation-center-create-a-project",{"data":1036},{"id":216,"attributes":1037},{"name":258,"order":215,"createdAt":259,"updatedAt":260,"publishedAt":259},{"id":1039,"title":1040,"slug":1041,"order":216,"section":1042},87,"Filters","transformation-center-filter",{"data":1043},{"id":216,"attributes":1044},{"name":258,"order":215,"createdAt":259,"updatedAt":260,"publishedAt":259},{"id":1046,"title":668,"slug":1047,"order":182,"section":1048},88,"transformation-center-inputs-files",{"data":1049},{"id":225,"attributes":1050},{"name":266,"order":91,"createdAt":267,"updatedAt":267,"publishedAt":268},{"id":1052,"title":1053,"slug":1054,"order":84,"section":1055},89,"Configuration","transformation-center-inputs-configuration",{"data":1056},{"id":225,"attributes":1057},{"name":266,"order":91,"createdAt":267,"updatedAt":267,"publishedAt":268},{"id":1059,"title":1060,"slug":1061,"order":91,"section":1062},90,"Runs","transformation-center-velocity-runs",{"data":1063},{"id":274,"attributes":1064},{"name":275,"order":135,"createdAt":276,"updatedAt":277,"publishedAt":278},{"id":1066,"title":1067,"slug":1068,"order":135,"section":1069},91,"Issues","transformation-center-velocity-issues",{"data":1070},{"id":274,"attributes":1071},{"name":275,"order":135,"createdAt":276,"updatedAt":277,"publishedAt":278},{"id":1073,"title":1074,"slug":1075,"order":91,"section":1076},92,"Overview","faq-atx-for-mainframe-refactor-overview",{"data":1077},{"id":284,"attributes":1078},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":1080,"title":1081,"slug":1082,"order":91,"section":1083},93,"General","faq-account-general",{"data":1084},{"id":385,"attributes":1085},{"name":386,"order":91,"createdAt":387,"updatedAt":388,"publishedAt":389},{"id":632,"title":310,"slug":1087,"order":135,"section":1088},"faq-terminals",{"data":1089},{"id":284,"attributes":1090},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":639,"title":1092,"slug":1093,"order":99,"section":1094},"Getting started","faq-getting-started",{"data":1095},{"id":284,"attributes":1096},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":320,"title":1098,"slug":1099,"order":162,"section":1100},"Project Management","faq-project-management",{"data":1101},{"id":284,"attributes":1102},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":509,"title":577,"slug":1104,"order":171,"section":1105},"faq-security",{"data":1106},{"id":284,"attributes":1107},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":1109,"title":250,"slug":1110,"order":180,"section":1111},98,"faq-shared-spaces",{"data":1112},{"id":284,"attributes":1113},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":1115,"title":232,"slug":1116,"order":81,"section":1117},99,"faq-versions-manager",{"data":1118},{"id":284,"attributes":1119},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":116,"title":1081,"slug":1121,"order":99,"section":1122},"faq-codebase-general",{"data":1123},{"id":294,"attributes":1124},{"name":143,"order":135,"createdAt":295,"updatedAt":295,"publishedAt":296},{"id":611,"title":172,"slug":1126,"order":152,"section":1127},"faq-codebase-dependencies",{"data":1128},{"id":294,"attributes":1129},{"name":143,"order":135,"createdAt":295,"updatedAt":295,"publishedAt":296},{"id":618,"title":163,"slug":1131,"order":162,"section":1132},"classification",{"data":1133},{"id":294,"attributes":1134},{"name":143,"order":135,"createdAt":295,"updatedAt":295,"publishedAt":296},{"id":625,"title":1136,"slug":1137,"order":171,"section":1138},"Catch-up","faq-codebase-catch-up",{"data":1139},{"id":294,"attributes":1140},{"name":143,"order":135,"createdAt":295,"updatedAt":295,"publishedAt":296},{"id":1142,"title":1143,"slug":1144,"order":91,"section":1145},104,"Features","features",{"data":1146},{"id":302,"attributes":1147},{"name":258,"order":99,"createdAt":303,"updatedAt":303,"publishedAt":303},{"id":1149,"title":1150,"slug":1151,"order":99,"section":1152},106,"Push Outputs","transformation-center-velocity-push-outputs",{"data":1153},{"id":274,"attributes":1154},{"name":275,"order":135,"createdAt":276,"updatedAt":277,"publishedAt":278},{"id":1156,"title":1157,"slug":1158,"order":99,"section":1159},107,"CodeCommit Booster","faq-transformation-codecommit-booster",{"data":1160},{"id":302,"attributes":1161},{"name":258,"order":99,"createdAt":303,"updatedAt":303,"publishedAt":303},{"id":1163,"title":1164,"slug":1165,"order":205,"section":1166},108,"CTL","codebase-dependencies-languages-ctl",{"data":1167},{"id":81,"attributes":1168},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1170,"title":1171,"slug":1172,"order":171,"section":1173},109,"CLIST","codebase-dependencies-languages-clist",{"data":1174},{"id":81,"attributes":1175},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1177,"title":1178,"slug":1179,"order":152,"section":1180},110,"CCDEF","codebase-dependencies-languages-ccdef",{"data":1181},{"id":81,"attributes":1182},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1184,"title":1185,"slug":1186,"order":99,"section":1187},111,"Pre-fetch filter pop-up","dependencies-pre-fetch-filter-pop-up",{"data":1188},{"id":171,"attributes":1189},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"id":1191,"title":1192,"slug":1193,"order":173,"section":1194},112,"MNUCMD","codebase-dependencies-languages-mnucmd",{"data":1195},{"id":81,"attributes":1196},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1198,"title":1199,"slug":1200,"order":99,"section":1201},113,"Duplicated IDs","codebase-assets-duplicated-ids",{"data":1202},{"id":99,"attributes":1203},{"name":143,"order":99,"createdAt":144,"updatedAt":145,"publishedAt":146},{"id":1205,"title":1206,"slug":1207,"order":182,"section":1208},114,"MNUDDS","codebase-dependencies-languages-mnudds",{"data":1209},{"id":81,"attributes":1210},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1212,"title":597,"slug":1213,"order":135,"section":1214},115,"compare-tool-get-started",{"data":1215},{"id":333,"attributes":1216},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"id":1218,"title":597,"slug":1219,"order":99,"section":1220},116,"data-migrator-get-started",{"data":1221},{"id":349,"attributes":1222},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"id":1224,"title":1225,"slug":1226,"order":91,"section":1227},122,"Reports","data-migrator-reports",{"data":1228},{"id":469,"attributes":1229},{"name":470,"order":135,"createdAt":471,"updatedAt":472,"publishedAt":473},{"id":1231,"title":1232,"slug":1233,"order":135,"section":1234},123,"Logs","data-migrator-logs",{"data":1235},{"id":469,"attributes":1236},{"name":470,"order":135,"createdAt":471,"updatedAt":472,"publishedAt":473},{"id":1238,"title":1239,"slug":1240,"order":152,"section":1241},128,"Advanced Options","compare-tool-advanced-options",{"data":1242},{"id":333,"attributes":1243},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"id":1245,"title":1246,"slug":1247,"order":135,"section":1248},129,"Terminals installation","terminals-installation",{"data":1249},{"id":309,"attributes":1250},{"name":310,"order":135,"createdAt":311,"updatedAt":312,"publishedAt":313},{"id":1252,"title":1253,"slug":1254,"order":135,"section":1255},130,"PDF comparison","pdf-comparison",{"data":1256},{"id":365,"attributes":1257},{"name":366,"order":91,"createdAt":367,"updatedAt":368,"publishedAt":369},{"id":1259,"title":1260,"slug":1261,"order":99,"section":1262},131,"Text file comparison","text-file-comparison",{"data":1263},{"id":365,"attributes":1264},{"name":366,"order":91,"createdAt":367,"updatedAt":368,"publishedAt":369},{"id":1266,"title":1267,"slug":1268,"order":99,"section":1269},135,"HTML report","compare-tool-html-report",{"data":1270},{"id":333,"attributes":1271},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"id":1273,"title":1274,"slug":1275,"order":91,"section":1276},136,"Flat File comparison","flat-file-comparison-page",{"data":1277},{"id":365,"attributes":1278},{"name":366,"order":91,"createdAt":367,"updatedAt":368,"publishedAt":369},{"id":1280,"title":1281,"slug":1282,"order":152,"section":1283},137,"Database comparison","database-comparisons",{"data":1284},{"id":365,"attributes":1285},{"name":366,"order":91,"createdAt":367,"updatedAt":368,"publishedAt":369},{"id":1287,"title":1288,"slug":1289,"order":162,"section":1290},138,"Binary file comparison","binary-file-comparison",{"data":1291},{"id":365,"attributes":1292},{"name":366,"order":91,"createdAt":367,"updatedAt":368,"publishedAt":369},{"id":1294,"title":686,"slug":1295,"order":91,"section":1296},140,"bluage-toolbox-introduction",{"data":1297},{"id":375,"attributes":1298},{"name":376,"order":223,"createdAt":377,"updatedAt":378,"publishedAt":379},{"id":1300,"title":1301,"slug":1302,"order":135,"section":1303},141,"Multi-region","faq-account-multi-region",{"data":1304},{"id":385,"attributes":1305},{"name":386,"order":91,"createdAt":387,"updatedAt":388,"publishedAt":389},{"id":1307,"title":597,"slug":1308,"order":91,"section":1309},144,"refactoring-tool-get-started",{"data":1310},{"id":403,"attributes":1311},{"name":404,"order":81,"createdAt":405,"updatedAt":406,"publishedAt":407},{"id":1313,"title":1053,"slug":1314,"order":91,"section":1315},145,"data-migrator-faq-configuration",{"data":1316},{"id":479,"attributes":1317},{"name":285,"order":99,"createdAt":480,"updatedAt":481,"publishedAt":482},{"id":1319,"title":1320,"slug":1321,"order":135,"section":1322},146,"Release Notes","compare-tool-release-note-2-0",{"data":1323},{"id":411,"attributes":1324},{"name":412,"order":135,"createdAt":413,"updatedAt":414,"publishedAt":415},{"id":1326,"title":1320,"slug":1327,"order":135,"section":1328},147,"data-migrator-release-note-2-0",{"data":1329},{"id":421,"attributes":1330},{"name":412,"order":152,"createdAt":422,"updatedAt":423,"publishedAt":415},{"id":1332,"title":686,"slug":1333,"order":91,"section":1334},151,"compare-tool-introduction",{"data":1335},{"id":333,"attributes":1336},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"id":1338,"title":686,"slug":1339,"order":91,"section":1340},152,"data-migrator-introduction",{"data":1341},{"id":349,"attributes":1342},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"id":1344,"title":430,"slug":1345,"order":152,"section":1346},153,"generative-ai",{"data":1347},{"id":284,"attributes":1348},{"name":285,"order":286,"createdAt":287,"updatedAt":288,"publishedAt":287},{"id":1350,"title":1351,"slug":1352,"order":91,"section":1353},154,"AI Booster","ai-booster",{"data":1354},{"id":429,"attributes":1355},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1357,"title":1358,"slug":1359,"order":135,"section":1360},155,"Activities Summary","activities-summary",{"data":1361},{"id":429,"attributes":1362},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":445,"title":1364,"slug":1365,"order":99,"section":1366},"Code Summary","code-summary",{"data":1367},{"id":429,"attributes":1368},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1370,"title":1371,"slug":1372,"order":152,"section":1373},157,"Code Explanation","code-explanation",{"data":1374},{"id":429,"attributes":1375},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1377,"title":1378,"slug":1379,"order":162,"section":1380},158,"Comments Translation","comments-translation",{"data":1381},{"id":429,"attributes":1382},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1384,"title":1385,"slug":1386,"order":171,"section":1387},159,"BMS Preview (User screen design preview)","bms-preview",{"data":1388},{"id":429,"attributes":1389},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1391,"title":1392,"slug":1393,"order":180,"section":1394},160,"BQL Generation","bql-generation",{"data":1395},{"id":429,"attributes":1396},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1398,"title":163,"slug":1399,"order":81,"section":1400},162,"ai-classification",{"data":1401},{"id":429,"attributes":1402},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1404,"title":1405,"slug":1406,"order":162,"section":1407},165,"Compare UI","compare-tool-ui",{"data":1408},{"id":333,"attributes":1409},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"id":1411,"title":1412,"slug":1413,"order":205,"section":1414},166,"Code transformation","genai-code-transformation",{"data":1415},{"id":429,"attributes":1416},{"name":430,"order":135,"createdAt":431,"updatedAt":432,"publishedAt":415},{"id":1418,"title":1419,"slug":1420,"order":180,"section":1421},167,"Application Entrypoints","application-entrypoints",{"data":1422},{"id":171,"attributes":1423},{"name":172,"order":173,"createdAt":174,"updatedAt":174,"publishedAt":174},{"id":1425,"title":1426,"slug":1427,"order":152,"section":1428},168,"Calibration","transformation-center-velocity-calibration",{"data":1429},{"id":274,"attributes":1430},{"name":275,"order":135,"createdAt":276,"updatedAt":277,"publishedAt":278},{"id":1432,"title":285,"slug":1433,"order":171,"section":1434},169,"compore-tool-faq",{"data":1435},{"id":333,"attributes":1436},{"name":334,"order":162,"createdAt":335,"updatedAt":336,"publishedAt":337},{"id":1438,"title":1439,"slug":1440,"order":223,"section":1441},170,"GS21","codebase-dependencies-languages-gs21",{"data":1442},{"id":81,"attributes":1443},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1445,"title":686,"slug":1446,"order":91,"section":1447},171,"bluage-refactoring-toolkit-introduction",{"data":1448},{"id":88,"attributes":1449},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1451,"title":1452,"slug":1453,"order":135,"section":1454},172,"Types of Refactoring","bluage-refactoring-toolkit-types-of-refactoring",{"data":1455},{"id":88,"attributes":1456},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1458,"title":1459,"slug":1460,"order":99,"section":1461},173,"API helpers","bluage-refactoring-toolkit-api-helpers",{"data":1462},{"id":88,"attributes":1463},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1465,"title":1466,"slug":1467,"order":152,"section":1468},174,"Built-in refactorings","bluage-refactoring-toolkit-built-in-refactorings",{"data":1469},{"id":88,"attributes":1470},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1472,"title":1473,"slug":1474,"order":162,"section":1475},175,"Project Skeleton","bluage-refactoring-toolkit-project-skeleton",{"data":1476},{"id":88,"attributes":1477},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1479,"title":1480,"slug":1481,"order":171,"section":1482},176,"Coding a refactoring","bluage-refactoring-toolkit-coding-a-refactoring",{"data":1483},{"id":88,"attributes":1484},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1486,"title":1487,"slug":1488,"order":180,"section":1489},179,"DS STM Models","bluage-refactoring-toolkit-ds-stm-models",{"data":1490},{"id":88,"attributes":1491},{"name":460,"order":99,"createdAt":461,"updatedAt":462,"publishedAt":463},{"id":1493,"title":1494,"slug":1495,"order":91,"section":1496},181,"Versioning ","data-migrator-versioning",{"data":1497},{"id":421,"attributes":1498},{"name":412,"order":152,"createdAt":422,"updatedAt":423,"publishedAt":415},{"id":1500,"title":1501,"slug":1502,"order":91,"section":1503},182,"Global Step","data-migrator-global-step",{"data":1504},{"id":488,"attributes":1505},{"name":489,"order":91,"createdAt":490,"updatedAt":491,"publishedAt":492},{"id":1507,"title":1508,"slug":1509,"order":152,"section":1510},183,"QDDS Conversion Step","data-migrator-qdds-conversion-step",{"data":1511},{"id":488,"attributes":1512},{"name":489,"order":91,"createdAt":490,"updatedAt":491,"publishedAt":492},{"id":1514,"title":1515,"slug":1516,"order":99,"section":1517},184,"Creation or Deletion Step","data-migrator-creation-or-deletion-step",{"data":1518},{"id":488,"attributes":1519},{"name":489,"order":91,"createdAt":490,"updatedAt":491,"publishedAt":492},{"id":1521,"title":1522,"slug":1523,"order":135,"section":1524},185,"Database Configuration Step","data-migrator-database-configuration-step",{"data":1525},{"id":488,"attributes":1526},{"name":489,"order":91,"createdAt":490,"updatedAt":491,"publishedAt":492},{"id":1528,"title":1529,"slug":1530,"order":162,"section":1531},186,"Data Loading Step","data-migrator-data-loading-step",{"data":1532},{"id":488,"attributes":1533},{"name":489,"order":91,"createdAt":490,"updatedAt":491,"publishedAt":492},{"id":1535,"title":1536,"slug":1537,"order":135,"section":1538},187,"Migration","data-migrator-faq-migration",{"data":1539},{"id":479,"attributes":1540},{"name":285,"order":99,"createdAt":480,"updatedAt":481,"publishedAt":482},{"id":1542,"title":1225,"slug":1543,"order":99,"section":1544},188,"data-migrator-faq-reports",{"data":1545},{"id":479,"attributes":1546},{"name":285,"order":99,"createdAt":480,"updatedAt":481,"publishedAt":482},{"id":1548,"title":1494,"slug":1549,"order":91,"section":1550},189,"compare-tool-versioning",{"data":1551},{"id":411,"attributes":1552},{"name":412,"order":135,"createdAt":413,"updatedAt":414,"publishedAt":415},{"id":1554,"title":1074,"slug":1555,"order":135,"section":1556},190,"data-migrator-overview",{"data":1557},{"id":349,"attributes":1558},{"name":350,"order":152,"createdAt":351,"updatedAt":352,"publishedAt":353},{"id":1560,"title":1561,"slug":1562,"order":162,"section":1563},191,"Capture & Replay - GS21 Terminals ","terminals-gs21",{"data":1564},{"id":309,"attributes":1565},{"name":310,"order":135,"createdAt":311,"updatedAt":312,"publishedAt":313},{"id":1567,"title":1568,"slug":1569,"order":81,"section":1570},193,"Compatibility","compatibility",{"data":1571},{"id":152,"attributes":1572},{"name":153,"order":154,"createdAt":155,"updatedAt":155,"publishedAt":156},{"id":96,"title":97,"slug":98,"order":99,"section":1574},{"data":1575},{"id":81,"attributes":1576},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1578,"title":1579,"slug":1580,"order":81,"section":1581},195,"Control-M","codebase-dependencies-languages-control-m",{"data":1582},{"id":81,"attributes":1583},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},{"id":1585,"title":686,"slug":1586,"order":91,"section":1587},197,"aws-sde-introduction",{"data":1588},{"id":516,"attributes":1589},{"name":517,"order":91,"createdAt":518,"updatedAt":519,"publishedAt":520},{"id":1591,"title":1592,"slug":1593,"order":135,"section":1594},198,"Deployment guide","aws-sde-deployment-guide",{"data":1595},{"id":586,"attributes":1596},{"name":587,"order":135,"createdAt":588,"updatedAt":589,"publishedAt":590},{"id":1598,"title":1599,"slug":1600,"order":91,"section":1601},199,"User guides","aws-sde-user-guides",{"data":1602},{"id":586,"attributes":1603},{"name":587,"order":135,"createdAt":588,"updatedAt":589,"publishedAt":590},{"id":1605,"title":1606,"slug":1607,"order":91,"section":1608},200,"General Considerations and Cost Disclaimer","aws-sde-disclaimer",{"data":1609},{"id":566,"attributes":1610},{"name":567,"order":81,"createdAt":568,"updatedAt":569,"publishedAt":570},{"id":1612,"title":1613,"slug":1614,"order":135,"section":1615},201,"Cost disclaimer","aws-sde-cost-disclaimer",{"data":1616},{"id":566,"attributes":1617},{"name":567,"order":81,"createdAt":568,"updatedAt":569,"publishedAt":570},{"id":1619,"title":1620,"slug":1621,"order":99,"section":1622},202,"Setup Gitlab","aws-sde-dop-setup-gitlab",{"data":1623},{"id":536,"attributes":1624},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1626,"title":1627,"slug":1628,"order":99,"section":1629},206,"Development Environment","aws-sde-dev-environment",{"data":1630},{"id":586,"attributes":1631},{"name":587,"order":135,"createdAt":588,"updatedAt":589,"publishedAt":590},{"id":1633,"title":1634,"slug":1635,"order":91,"section":1636},207,"Functional definition","aws-sde-dos-functional-definition",{"data":1637},{"id":526,"attributes":1638},{"name":527,"order":99,"createdAt":528,"updatedAt":529,"publishedAt":530},{"id":1640,"title":1641,"slug":1642,"order":135,"section":1643},208,"Architecture","aws-sde-dos-architecture",{"data":1644},{"id":526,"attributes":1645},{"name":527,"order":99,"createdAt":528,"updatedAt":529,"publishedAt":530},{"id":1647,"title":1648,"slug":1649,"order":99,"section":1650},209,"Project Management guide","aws-sde-dos-project-management-guide",{"data":1651},{"id":526,"attributes":1652},{"name":527,"order":99,"createdAt":528,"updatedAt":529,"publishedAt":530},{"id":1654,"title":1634,"slug":1655,"order":91,"section":1656},210,"aws-sde-dop-functional-definition",{"data":1657},{"id":536,"attributes":1658},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1660,"title":1661,"slug":1662,"order":135,"section":1663},211,"Setup guide","aws-sde-dop-setup-guide",{"data":1664},{"id":536,"attributes":1665},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1667,"title":1668,"slug":1669,"order":152,"section":1670},212,"Setup the AWS DevOps Pipeline requirements","aws-sde-dop-setup-devops-pipelines-requirements",{"data":1671},{"id":536,"attributes":1672},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1674,"title":1675,"slug":1676,"order":162,"section":1677},213,"Initializing AWS account after deploying the Building Pipeline CDK scripts","aws-sde-dop-init-account-after-deploy-building-pipeline",{"data":1678},{"id":536,"attributes":1679},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1681,"title":1682,"slug":1683,"order":171,"section":1684},214,"Initializing AWS account after deploying the Testing Pipeline CDK scripts","aws-sde-dop-init-account-after-deploy-test-pipeline",{"data":1685},{"id":536,"attributes":1686},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1688,"title":1689,"slug":1690,"order":180,"section":1691},215,"User guide","aws-sde-dop-user-guide",{"data":1692},{"id":536,"attributes":1693},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1695,"title":1696,"slug":1697,"order":164,"section":1698},216,"Project Manager guide","aws-sde-dop-project-manager-guide",{"data":1699},{"id":536,"attributes":1700},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1702,"title":1703,"slug":1704,"order":91,"section":1705},217,"Functional Definition","aws-sde-rts-functional-definition",{"data":1706},{"id":546,"attributes":1707},{"name":547,"order":162,"createdAt":548,"updatedAt":549,"publishedAt":550},{"id":1709,"title":1710,"slug":1711,"order":135,"section":1712},218,"Admin guide","aws-sde-rts-admin-guide",{"data":1713},{"id":546,"attributes":1714},{"name":547,"order":162,"createdAt":548,"updatedAt":549,"publishedAt":550},{"id":1716,"title":1689,"slug":1717,"order":99,"section":1718},219,"aws-sde-rts-user-guide",{"data":1719},{"id":546,"attributes":1720},{"name":547,"order":162,"createdAt":548,"updatedAt":549,"publishedAt":550},{"id":1722,"title":577,"slug":1723,"order":91,"section":1724},220,"aws-sde-security",{"data":1725},{"id":576,"attributes":1726},{"name":577,"order":171,"createdAt":578,"updatedAt":579,"publishedAt":580},{"id":1728,"title":1729,"slug":1730,"order":91,"section":1731},221,"AWS DevOps Setup (DOS)","aws-sde-rn-dos",{"data":1732},{"id":556,"attributes":1733},{"name":557,"order":195,"createdAt":558,"updatedAt":559,"publishedAt":560},{"id":1735,"title":1736,"slug":1737,"order":135,"section":1738},222,"AWS DevOps Pipeline (DOP)","aws-sde-rn-dop",{"data":1739},{"id":556,"attributes":1740},{"name":557,"order":195,"createdAt":558,"updatedAt":559,"publishedAt":560},{"id":1742,"title":1743,"slug":1744,"order":99,"section":1745},223,"AWS DevOps Regression Testing Snapshots (RTS)","aws-sde-rn-rts",{"data":1746},{"id":556,"attributes":1747},{"name":557,"order":195,"createdAt":558,"updatedAt":559,"publishedAt":560},{"id":1749,"title":1641,"slug":1750,"order":81,"section":1751},225,"aws-sde-dop-architecture",{"data":1752},{"id":536,"attributes":1753},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1755,"title":1756,"slug":1757,"order":195,"section":1758},226,"Building pipeline architectural diagram","aws-sde-dop-building-pipeline-architectural-diagram",{"data":1759},{"id":536,"attributes":1760},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1762,"title":1763,"slug":1764,"order":205,"section":1765},227,"Testing pipeline architectural diagram","aws-sde-dop-testing-pipeline-architectural-diagram",{"data":1766},{"id":536,"attributes":1767},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1769,"title":1770,"slug":1771,"order":215,"section":1772},228,"Other pipeline architectural diagram","aws-sde-dop-other-pipeline-architectural-diagram",{"data":1773},{"id":536,"attributes":1774},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1776,"title":1777,"slug":1778,"order":223,"section":1779},229,"Building pipeline flow chart","aws-sde-dop-building-pipeline-flow-chart",{"data":1780},{"id":536,"attributes":1781},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1783,"title":1784,"slug":1785,"order":286,"section":1786},230,"Testing pipeline flow chart","aws-sde-dop-testing-pipeline-flow-chart",{"data":1787},{"id":536,"attributes":1788},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1790,"title":1641,"slug":1791,"order":152,"section":1792},231,"aws-sde-rts-architecture",{"data":1793},{"id":546,"attributes":1794},{"name":547,"order":162,"createdAt":548,"updatedAt":549,"publishedAt":550},{"id":1796,"title":1797,"slug":1798,"order":173,"section":1799},232,"How to WinSCP to a linux2023 EC2?","aws-sde-dop-how-to-winscp-to-linux2023-ec2",{"data":1800},{"id":536,"attributes":1801},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1803,"title":1804,"slug":1805,"order":182,"section":1806},233,"How do pipeline work?","aws-sde-dop-how-do-pipeline-work",{"data":1807},{"id":536,"attributes":1808},{"name":537,"order":152,"createdAt":538,"updatedAt":539,"publishedAt":540},{"id":1810,"title":4,"slug":1811,"order":135,"section":1812},236,"codebase-dependencies-languages-tws",{"data":1813},{"id":81,"attributes":1814},{"name":83,"order":84,"createdAt":85,"updatedAt":85,"publishedAt":85},1776247173041]