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