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