Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
This page describes how and why Interface Description files are created during the preparation process.
Interface Description Files
When gmStudio translates your source code, it uses information about all the COM components referenced by your system. These COM components provide detailed information about the interfaces and types they contain and gmStudio uses this information to interpret your code and improve the quality of translations.
Rather than finding, loading, and inspecting external COM components every time it performs a translation, gmStudio uses a cache of pre-built interface description files (IDFs). The IDF cache is typically built at the beginning of your migration project from the COM components referenced by your codebase and registered on the migration machine. By default the IDF cache is located in the workspace\idf folder.
gmStudio creates IDFs for your migration project when you select [Tools/Author Interface Descriptions] from the menu. This operation is included in the default batch process for all new migrations.
Types of IDFs
COM dependencies can be classified as being either local, external, or custom:
A Local component (aka, In-House Component, IHC) is based on a migration unit that is part of the migration project.
Local components are defined by their source code.
IDFs for local COM components are generated from the source code of those components and saved to the local IDF cache folder (idf\FromCode).
An External component (aka, Third-Party Component, 3PC) is based on a reference to a COM type library file (TLB, DLL, OCX, etc.) that is external to the migration project.
External components are binary files (pre-compiled from source code that is external to the Migration Project). In many cases, they are provided only as binary from a third party.
IDFs for external COM components are generated from the COM typelib files and saved to the system IDF cache folder (idf\FromIDL).
In order to create IDFs for an external component, the component must be properly registered and ready to load.
Many applications use a mix of .NET and VB6/ASP. Specifically, the VB6/ASP code references .NET classes in .NET assemblies. This is known as COM interop. To do this, the .NET assembly must be referenced through a second file called a COM Callable Wrapper (CCW). A CCW is a COM type library (a .tlb file) created using visual studio or the tlbexp tool that is part of the .NET SDK. If your application is calling .NET through a CCW, you will have to generate an IDF from the CCW .tlb file.
Custom IDFs is an IDF that you create by hand, typically by modifying a generated IDF.
Custom IDFs are typically placed in the user folder so they will take precedence over like-named IDFs generated by the tool.
Custom IDFs may also be explicitly assigned to load instead of a generated IDF; for example by using the Registry-libname command.
Validating your IDFs
If you are working on a machine where the COM components referenced by your migration are properly registered, then creating and using IDFs should be a completely automatic process. However, if the automatic process fails, you can identify the missing IDFs and create them manually.
The Dependency Status field for each migration task indicates the overall status of the IDFs it requires:
Dependency Status=READY means all the IDFs required for the migration unit are found in the IDF cache.
Dependency Status=~IDF means at least one IDF required for the migration unit could not be found in the IDF cache.
The meaning of Dependency Status=READY is controlled by the RefStatFlags setting in the application config file.
RefStatFlags = "IDF"; require IDF only. RefStatFlags = "ASM"; require Interop only. RefStatFlags = "IDF+ASM"; require both IDF and Interop
Quality of IDFs
Note that the quality of an IDF will depend on if the corresponding COM component and its COM dependencies are properly installed and registered on the machine where the IDFs are generated. If the COM component and its COM dependencies are not properly registered, the IDF will be more weakly typed: using Variants, VB_USERDEFINED, and missing coclass/subclass information. These weakly typed IDFs can hinder gmStudio's ability to recognize and interpret symbols defined using types from the COM API and this will reduce the quality of the generated code.
In addition, some COM APIs are intentionally weakly typed. For example, collection properties or properties for other complex types might simply return type variant or type object. This reduces code quality and can result in extensive use of CallByName and dynamic cast. It also reduces the ability of the tool to apply upgrade transformations. When you see this, you can typically improve things by creating a custom COM description file that have variants and objects replaced with the appropriate stronger types. See this article for an example.
Using The References Panel
The RefStat field in the task list will tell you if you are missing an IDF needed by one of your migration tasks, but it cannot tell you which IDF is missing. In order to see that, you have to look at the References panel.
The references panel provides detailed information about all the components referenced by each migration unit. One piece of this information is the RefStat field:
Dependency Status=READY means the component's IDF file is in the IDF cache.
Dependency Status=NOTFOUND means the component's IDF is not found in the IDF cache.
Click [Rebuild Interface Description] from the reference context menu to rebuild an IDF.
Click [Edit Interface Description] from the reference context menu to edit an IDF.
IDF Reports and Logs
The Source References Report can provide a high-level survey of all COM dependencies for your entire migration project. Essentially this report is the consolidated References Panel data for a selected set of migration units.
There are also two reports that tabulate the contents of the IDF cache:
Interface File Headers Report
Interface File ProgIDs Report
When gmStudio creates an IDF file, it saves a log file in the workspace\log folder. The name of the file is derived from the COM filename with the extension .tli.log.
Generating IDFs Manually
Typically, you will let the COM references in your migration units drive the creation of IDFs; however, if you want to create IDFs for an arbitrary set of COM components, you can do so by performing the following steps:
Click [Tools\Author Interface Description(s) from files...] from the menu. An open file dialog will be displayed.
Select COM binary file(s). You may also select *.idl files already generated by gmStudio, or a *.lst file containing a list of COM (or IDL) files
Click Open. An IDF for the selected COM component will be created.
When generating IDF files, gmStudio will attempt to locate the COM files for each reference based on your registry and the file location hint in the reference statement in your VBP. If that fails, it will look for the file in the folder(s) specified in COM Search Folders specified for your project. This is a semicolon-delimited list of folder paths that may be searched for the COM binary files.
This value is stored in the gmProj file/s TlbSearchPath element.
COM Selection Variations
If you wish to process a group of COM components in batch, create a text file that has the full path to a COM component on each line and save as typelibs.lst; then select the typelibs.lst file in step 2 above.
If you have a group of IDL files created by gmStudio, you can select them instead of a COM file in step 2 above.
Dealing with COM module references
There are a handful of COM types that are referenced using a little-known sub-module notation (file.dll\#) where # is the number of a module within the type library. For example, if your VB6 program uses the Regular Expression classes in VBScript.dll you will find a reference in your VBP like the following:
gmStudio handles this by creating IDFs of the form file_#.dll, in this case vbscript_3.dll.xml.
If you need to process one of these submodules manually, enter the (file.dll\#) path manually in step 2.
Dealing with Non-standard ProgIds
COM classes can be identified by a ProgId value of the form Library.Class. Normally, the value of Library and Class correspond directly to symbols stored in the COM binary. However, sometimes non-standard identifiers are used for "branding" purposes. These branded ProgIDs do not correspond directly to the ProgIDs found in the type libraries. In order to deal with this, the gmStudio configuration has a file called registry.xml that provides a cross reference for non-standard ProgIds and actual ProgIds.
Typically you will add registry commands like this to your translation script.
<!--
These registry commands help the translator resolve
non-standard ProgIds used by various third party components.
source = the ProgId that appears in code
target = the LibName.ClassName that appears in the IDL/IDF
-->
<registry type="ProgId" source="APToolkit.Object" target="APToolkitLib.APToolKit" />
<registry type="ProgId" source="AddressObject.AddressCheck" target="AddressObjectLib.AddressCheck" />
<registry type="progid" source="AddressObject.Parse" target="AddressObjectLib.Parse" />
<registry type="progid" source="AddressObject.ZipCodeData" target="AddressObjectLib.ZipCodeData" />
<registry type="progid" source="DERuntime.DERuntime" target="DERuntimeObjects.DataEnvironment" />
<registry type="progid" source="IXSSO.Query" target="Cisso.CissoQuery" />
<registry type="progid" source="MSWC.BrowserType" target="BrowserType.BrowserCap" />
<registry type="progid" source="MSWC.Counters" target="Counters.Counters" />
<registry type="progid" source="MSXML.DOMDocument" target="MSXML2.DOMDocument" />
<registry type="progid" source="Microsoft.XMLDOM" target="MSXML2.DOMDocument" />
<registry type="progid" source="Microsoft.XMLHTTP" target="MSXML2.XMLHTTP" />
<registry type="progid" source="Msxml2.DOMDocument.4.0" target="MSXML2.DomDocument" />
<registry type="progid" source="Msxml2.ServerXMLHTTP.4.0" target="MSXML2.ServerXMLHTTP" />
<registry type="progid" source="Persits.MailSender" target="ASPEMAILLib.MailSender" />
<registry type="progid" source="SAWZip.Archive.1" target="SAWZIPLib.Archive" />
<registry type="progid" source="SoftArtisans.ExcelWriter" target="SAEXCELLib.SAExcelApplication" />
<registry type="progid" source="SoftArtisans.FileUp" target="UPLDICTIONARYLib.ISAFile" />
<registry type="progid" source="WScript.Network" target="IWshRuntimeLibrary.WshNetwork" />
<registry type="progid" source="WScript.Shell" target="IWshRuntimeLibrary.WshShell" />
Multiple DLL Versions
Large VB6 and ASP applications sometimes reference multiple versions of the same COM API. For example, there are several versions of the MSXML2 API in circulation – msxml2.dll, msxml3.dll, msxml4.dll, and msxml6.dll.
The registry-libname command in a Translation Configuration File allows multiple versions of a given DLL file to target a single standard as part of the migration process. For example, the following two commands tell gmBasic that references to msxml4.dll and msxml6.dll should be processed as if they were references to GM.msxml6.dll. This means that only the custom msxml6 IDF will be the only used in the upgrade process.
The following registry-libname directives can be used to standardize on multiple COM components on a single IDF:
COM IDFs sometimes declare API elements as having type short. However, most .NET APIs are favor type int (i.e., Int32). You will generally use an integer in a .NET API where you used a short in a COM API. Consequently, the default IDF files prepared by gmBasic will Integer instead of Short.
However, if you are planning to use interop as the replacement for a COM dependency, you will need to retain type Short in your IDF. Retaining a short in an IDF is done by passing TypeInteger=short on the command line when you generate the IDFs for those particular COM files. The IDF generation process is mostly automated, but you can find the command line string for generating an IDF in the gmStudio application settings, gmStudio.cfg, file. It is the variable IdlToXmlCmd:
Default (short in the IDL to an Integer in the IDF)
IdlToXmlCmd = "cmd.exe /C pushd '%IdfFromIdlFolder%' && '%TranToolExe%' '%SrcIdlPath%' >> '%LogPath%' ...
Modified (short in the IDL to an Short in the IDF)
IdlToXmlCmd = "cmd.exe /C pushd '%IdfFromIdlFolder%' && '%TranToolExe%' '%SrcIdlPath%' TypeInteger=short >> '%LogPath%' ...
Hand-Coded IDF
Sometimes you may not have the binary files for a COM component and cannot generate its IDF. In this situation, you may generate a starter IDF and add the API elements you need by hand. You may create a starter document for a "NOT FOUND" IDF by selecting Edit IDF item from the References context menu. This is normally just a short term fix, to allow you to move forward with work until you obtain a copy of the COM binary and use it to generate a full and accurate IDF.
Table of Contents
window.performance.mark("wf/html/ssrGlobals.start");window.__LOADABLE__=["GCw5R","Y6119","bTjE2","4qwYp","lkLmI","BMpKa","bwedP","xXIQx","NRUrF","6E8ob","NcP7O","fQj-o","kWSCB","ctWVd","8AYRE","Dl_eE","-KKls","g-l5_","6xpDa","GuqTT","9L4J0","qz-Pe","z8NN7","ViewPageRouteComponentLoader","i-H0G","asP3B","3f0hi","cwXQQ","lwzlE","7obd3","ctj29","vP7ts","EfLS5","Hm6N8","Eb7Gh","nouWf","jrCIr","7voiQ","liSnz","zM3y-","XLglR","KYiA6"];window.__HYDRATABLE__=true;window.__APOLLO_STATE__={"$ROOT_QUERY.tenant":{"shard":"confluence-prod-us-14-2.prod.atl-paas.net","cloudId":"af8a0353-4012-458b-85c4-350b5244d75c","environment":"PRODUCTION","activationId":"485361fb-1895-47e6-a938-5126508c3bbf","__typename":"Tenant"},"ROOT_QUERY":{"tenant":{"type":"id","generated":true,"id":"$ROOT_QUERY.tenant","typename":"Tenant"},"organization":{"type":"id","generated":true,"id":"$ROOT_QUERY.organization","typename":"Organization"},"confluence_atlassianUser":null,"confluence_atlassianUser({\"current\":true})":null,"getAIConfig({\"product\":\"CONFLUENCE\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.getAIConfig({\"product\":\"CONFLUENCE\"})","typename":"AIConfigResponse"},"confluence_tenantContext":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext","typename":"ConfluenceTenantContext"},"isSiteAdmin":false,"abTestCohorts":"{\"spaceDefaultContentRevamp\":\"20-25\"}","experimentFeatures":"{\"confluence_backend_fabric_editor_for_all_pages\":\"false\",\"confluence_live_pages_beta\":\"beta-default-on\",\"confluence_notes\":\"DISABLED\",\"confluence_content_wrapper_beta\":\"null\",\"confluence_modernize\":\"exp-test\",\"confluence_aifc\":\"exp-control\"}","userCanCreateContent":false,"isNewUser":false,"siteSettings":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteSettings","typename":"SiteSettings"},"siteDescription":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteDescription","typename":"SiteDescription"},"currentConfluenceUser":{"type":"id","generated":true,"id":"$ROOT_QUERY.currentConfluenceUser","typename":"CurrentConfluenceUser"},"adminAnnouncementBanner":null,"lookAndFeel":{"type":"id","generated":true,"id":"$ROOT_QUERY.lookAndFeel","typename":"LookAndFeelSettings"},"siteConfiguration":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteConfiguration","typename":"SiteConfiguration"},"webItemSections({\"contentId\":null,\"key\":null,\"location\":\"system.header\u002Fleft\",\"locations\":[],\"version\":null})":[{"type":"id","generated":false,"id":"-system.header\u002Fleft-leading","typename":"WebSection"}],"webPanels({\"contentId\":\"1577454\",\"location\":\"atl.general\"})":[],"space({\"key\":\"GMG\"})":{"type":"id","generated":false,"id":"Space:1572867","typename":"Space"},"getRecommendedPages({\"entityId\":\"1577454\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1577454\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"})","typename":"RecommendedPages"},"getRecommendedPagesSpaceStatus({\"entityId\":\"GMG\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.getRecommendedPagesSpaceStatus({\"entityId\":\"GMG\"})","typename":"RecommendedPagesSpaceStatus"},"dataSecurityPolicy":{"type":"id","generated":true,"id":"$ROOT_QUERY.dataSecurityPolicy","typename":"Confluence_dataSecurityPolicy"},"confluence_teamPresenceContentSetting({\"cloudId\":\"af8a0353-4012-458b-85c4-350b5244d75c\",\"spaceKey\":\"GMG\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_teamPresenceContentSetting({\"cloudId\":\"af8a0353-4012-458b-85c4-350b5244d75c\",\"spaceKey\":\"GMG\"})","typename":"ConfluenceTeamPresence"},"comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":3,\"pageId\":\"1577454\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":3,\"pageId\":\"1577454\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})","typename":"PaginatedCommentList"},"comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":2000,\"pageId\":\"1577454\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":2000,\"pageId\":\"1577454\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})","typename":"PaginatedCommentList"},"webPanels({\"contentId\":\"1577454\",\"location\":\"atl.footer\"})":[{"type":"id","generated":true,"id":"ROOT_QUERY.webPanels({\"contentId\":\"1577454\",\"location\":\"atl.footer\"}).0","typename":"WebPanel"}],"comments({\"depth\":\"ALL\",\"pageId\":\"1577454\",\"type\":\"UNRESOLVED\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.comments({\"depth\":\"ALL\",\"pageId\":\"1577454\",\"type\":\"UNRESOLVED\"})","typename":"PaginatedCommentList"},"content({\"id\":\"1577454\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\"})","typename":"PaginatedContentListWithChild"},"webItemSections({\"contentId\":\"1577454\",\"key\":null,\"location\":\"system.content.button\",\"locations\":[],\"version\":null})":[],"singleContent({\"id\":\"1577454\",\"status\":[\"current\"]})":{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"},"contentSmartLinks({\"id\":\"1577454\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentSmartLinks({\"id\":\"1577454\"})","typename":"PaginatedSmartLinkList"},"spaceSidebarLinks({\"spaceKey\":\"GMG\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.spaceSidebarLinks({\"spaceKey\":\"GMG\"})","typename":"SpaceSidebarLinks"},"singleContent({\"id\":\"1577454\"})":{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"},"contentAnalyticsViewers({\"contentId\":\"1577454\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentAnalyticsViewers({\"contentId\":\"1577454\"})","typename":"ContentAnalyticsViewers"},"content({\"id\":\"1577454\",\"status\":[\"archived\",\"current\",\"draft\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"archived\",\"current\",\"draft\"]})","typename":"PaginatedContentListWithChild"},"macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8})":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8})","typename":"MacroConnection"},"singleContent({\"id\":\"1577454\",\"status\":[\"current\",\"draft\",\"archived\"]})":{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"},"webItemSections({\"contentId\":\"1577454\",\"key\":null,\"location\":\"page.metadata.banner\",\"locations\":[],\"version\":null})":[{"type":"id","generated":false,"id":"-page.metadata.banner-leading:content\u002F1577454","typename":"WebSection"}],"content({\"embeddedContentRender\":null,\"id\":\"1577454\",\"version\":null})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"embeddedContentRender\":null,\"id\":\"1577454\",\"version\":null})","typename":"PaginatedContentListWithChild"},"contentContributors({\"id\":\"1577454\",\"limit\":4})":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1577454\",\"limit\":4})","typename":"ContentContributors"},"webPanels({\"contentId\":\"1577454\",\"location\":\"atl.page.content.footer.actions\"})":[{"type":"id","generated":true,"id":"ROOT_QUERY.webPanels({\"contentId\":\"1577454\",\"location\":\"atl.page.content.footer.actions\"}).0","typename":"WebPanel"}],"content({\"id\":\"1577454\",\"status\":[\"current\",\"draft\",\"archived\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"current\",\"draft\",\"archived\"]})","typename":"PaginatedContentListWithChild"},"mediaConfiguration":{"type":"id","generated":true,"id":"$ROOT_QUERY.mediaConfiguration","typename":"MediaConfiguration"},"content({\"id\":\"1577454\",\"status\":[\"current\",\"archived\",\"draft\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"current\",\"archived\",\"draft\"]})","typename":"PaginatedContentListWithChild"},"content({\"id\":\"1577454\",\"status\":[\"archived\",\"current\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"archived\",\"current\"]})","typename":"PaginatedContentListWithChild"},"ptpage({\"id\":\"1577454\",\"status\":[\"CURRENT\"]})":{"type":"id","generated":false,"id":"PTPage:1577454","typename":"PTPage"},"ptpage({\"enablePaging\":true,\"id\":\"1577454\",\"pageTree\":80,\"spaceKey\":\"GMG\",\"status\":[\"CURRENT\",\"DRAFT\"]})":{"type":"id","generated":false,"id":"PTPage:1577454","typename":"PTPage"},"ptpage({\"enablePaging\":true,\"pageTree\":80,\"spaceKey\":\"GMG\",\"status\":[\"CURRENT\",\"DRAFT\"]})":{"type":"id","generated":false,"id":"PTPage:1572869","typename":"PTPage"},"content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"GMG\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"GMG\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"})","typename":"PaginatedContentListWithChild"},"content({\"id\":\"1577454\",\"status\":[\"draft\",\"current\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"draft\",\"current\"]})","typename":"PaginatedContentListWithChild"},"content({\"id\":\"1577454\",\"version\":null})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1577454\",\"version\":null})","typename":"PaginatedContentListWithChild"}},"$ROOT_QUERY.organization":{"orgId":"jd6j2080-1234-186k-68a1-082k8411b58a","__typename":"Organization"},"$ROOT_QUERY.getAIConfig({\"product\":\"CONFLUENCE\"})":{"isEnabled":false,"isRovoEnabled":false,"isRovoLLMEnabled":false,"__typename":"AIConfigResponse"},"$ROOT_QUERY.confluence_tenantContext.licenseStates.confluence":{"ccpEntitlementId":"b5cb7ae2-6b63-3358-b685-1f6db49db845","__typename":"LicenseState"},"$ROOT_QUERY.confluence_tenantContext.licenseStates":{"confluence":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licenseStates.confluence","typename":"LicenseState"},"__typename":"LicenseStates"},"$ROOT_QUERY.confluence_tenantContext":{"licenseStates":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licenseStates","typename":"LicenseStates"},"timeZone":"America\u002FNew_York","editions":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.editions","typename":"Editions"},"monolithRegion":"prod-east","__typename":"ConfluenceTenantContext","licensedProducts":[{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.0","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.1","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.2","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.3","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.4","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.5","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.6","typename":"LicensedProduct"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.7","typename":"LicensedProduct"}]},"$ROOT_QUERY.confluence_tenantContext.editions":{"confluence":"PREMIUM","__typename":"Editions"},"$ROOT_QUERY.siteSettings.homepage":{"uri":"\u002Fspaces\u002FGMG\u002Foverview","title":"Great Migrations Documentation Home","__typename":"Homepage"},"$ROOT_QUERY.siteSettings":{"homepage":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteSettings.homepage","typename":"Homepage"},"siteTitle":"Great Migrations","showApplicationTitle":false,"frontCover":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteSettings.frontCover","typename":"FrontCover"},"companyHubName":"Company hub","__typename":"SiteSettings","isNav4OptedIn":false},"$ROOT_QUERY.siteSettings.frontCover":{"frontCoverState":"hidden","__typename":"FrontCover"},"$ROOT_QUERY.siteDescription":{"logoUrl":"\u002Fwiki\u002Fdownload\u002Fattachments\u002F32971\u002Fatl.site.logo?version=1&modificationDate=1704854645569&cacheVersion=1&api=v2","__typename":"SiteDescription"},"$ROOT_QUERY.currentConfluenceUser":{"isAnonymous":true,"__typename":"CurrentConfluenceUser"},"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader":{"backgroundColor":"#576d78","primaryNavigation":{"type":"id","generated":true,"id":"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader.primaryNavigation","typename":"NavigationLookAndFeel"},"__typename":"HeaderLookAndFeel"},"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader.primaryNavigation":{"highlightColor":"#def3bf","__typename":"NavigationLookAndFeel"},"$ROOT_QUERY.lookAndFeel.custom":{"horizontalHeader":{"type":"id","generated":true,"id":"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader","typename":"HeaderLookAndFeel"},"__typename":"LookAndFeel"},"$ROOT_QUERY.lookAndFeel":{"custom":{"type":"id","generated":true,"id":"$ROOT_QUERY.lookAndFeel.custom","typename":"LookAndFeel"},"__typename":"LookAndFeelSettings"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.0":{"licenseStatus":"UNLICENSED","productKey":"jira-servicedesk","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.1":{"licenseStatus":"ACTIVE","productKey":"confluence","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.2":{"licenseStatus":"ACTIVE","productKey":"goal","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.3":{"licenseStatus":"ACTIVE","productKey":"rovo","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.4":{"licenseStatus":"ACTIVE","productKey":"jira-software","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.5":{"licenseStatus":"UNLICENSED","productKey":"confluence.feature","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.6":{"licenseStatus":"ACTIVE","productKey":"project","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.7":{"licenseStatus":"UNLICENSED","productKey":"confluence.feature.auditLog","__typename":"LicensedProduct"},"$ROOT_QUERY.siteConfiguration":{"customSiteLogo":true,"__typename":"SiteConfiguration"},"-system.header\u002Fleft-leading":{"id":"-system.header\u002Fleft-leading","label":null,"cacheKey":"-system.header\u002Fleft-leading","styleClass":"section-system.header\u002Fleft-leading first","items":[{"type":"id","generated":false,"id":"com.atlassian.confluence.plugins.confluence-space-ia:header-automation-link; \u002Fwiki\u002Fadmin\u002Fautomation#\u002Ftab\u002Frule-library","typename":"WebItem"},{"type":"id","generated":false,"id":"com.atlassian.confluence.plugins.confluence-space-ia:header-spaces-link; \u002Fwiki\u002Fspacedirectory\u002Fview.action","typename":"WebItem"},{"type":"id","generated":false,"id":"com.atlassian.confluence.extra.team-calendars:header-mycalendar-link; \u002Fwiki\u002Fmycalendar","typename":"WebItem"}],"__typename":"WebSection"},"com.atlassian.confluence.plugins.confluence-space-ia:header-automation-link; \u002Fwiki\u002Fadmin\u002Fautomation#\u002Ftab\u002Frule-library":{"accessKey":null,"completeKey":"com.atlassian.confluence.plugins.confluence-space-ia:header-automation-link","hasCondition":false,"id":null,"icon":null,"params":null,"label":"Automation","moduleKey":"header-automation-link","section":"system.header\u002Fleft","styleClass":"","tooltip":"Automation","url":"\u002Fwiki\u002Fadmin\u002Fautomation#\u002Ftab\u002Frule-library","urlWithoutContextPath":"\u002Fadmin\u002Fautomation#\u002Ftab\u002Frule-library","weight":9,"__typename":"WebItem"},"com.atlassian.confluence.plugins.confluence-space-ia:header-spaces-link; \u002Fwiki\u002Fspacedirectory\u002Fview.action":{"accessKey":null,"completeKey":"com.atlassian.confluence.plugins.confluence-space-ia:header-spaces-link","hasCondition":true,"id":"space-directory-link","icon":null,"params":null,"label":"Spaces","moduleKey":"header-spaces-link","section":"system.header\u002Fleft","styleClass":"","tooltip":"Spaces","url":"\u002Fwiki\u002Fspacedirectory\u002Fview.action","urlWithoutContextPath":"\u002Fspacedirectory\u002Fview.action","weight":10,"__typename":"WebItem"},"com.atlassian.confluence.extra.team-calendars:header-mycalendar-link; \u002Fwiki\u002Fmycalendar":{"accessKey":null,"completeKey":"com.atlassian.confluence.extra.team-calendars:header-mycalendar-link","hasCondition":true,"id":null,"icon":{"type":"id","generated":true,"id":"$com.atlassian.confluence.extra.team-calendars:header-mycalendar-link; \u002Fwiki\u002Fmycalendar.icon","typename":"Icon"},"params":null,"label":"Calendars","moduleKey":"header-mycalendar-link","section":"system.header\u002Fleft","styleClass":"","tooltip":"Calendars","url":"\u002Fwiki\u002Fmycalendar","urlWithoutContextPath":"\u002Fmycalendar","weight":60,"__typename":"WebItem"},"$com.atlassian.confluence.extra.team-calendars:header-mycalendar-link; \u002Fwiki\u002Fmycalendar.icon":{"height":24,"width":24,"path":"\u002Fwiki\u002Fimages\u002Ficons\u002Fcalendar.svg","__typename":"Icon"},"Space:1572867":{"id":"1572867","__typename":"Space","currentUser":{"type":"id","generated":true,"id":"$Space:1572867.currentUser","typename":"SpaceUserMetadata"},"settings":{"type":"id","generated":true,"id":"$Space:1572867.settings","typename":"SpaceSettings"},"name":"gmStudio Documentation","externalCollaboratorCount":0,"key":"GMG","type":"global","status":"current","icon":{"type":"id","generated":true,"id":"$Space:1572867.icon","typename":"Icon"},"homepage":{"type":"id","generated":false,"id":"Content:1572869","typename":"Content"},"operations":[{"type":"id","generated":true,"id":"Space:1572867.operations.0","typename":"OperationCheckResult"}],"containsExternalCollaborators":false,"history":{"type":"id","generated":true,"id":"$Space:1572867.history","typename":"SpaceHistory"},"didContainUserContent":true,"alias":"GMG","homepageId":"1572869","theme":null,"lookAndFeel":{"type":"id","generated":true,"id":"$Space:1572867.lookAndFeel","typename":"LookAndFeel"},"dataClassificationTags":{"type":"json","json":[]},"spaceTypeSettings":{"type":"id","generated":true,"id":"$Space:1572867.spaceTypeSettings","typename":"SpaceTypeSettings"}},"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1577454\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"})":{"recommendedPages":[],"status":{"type":"id","generated":true,"id":"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1577454\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"}).status","typename":"RecommendedPagesStatus"},"__typename":"RecommendedPages"},"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1577454\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"}).status":{"userCanToggle":false,"isEnabled":false,"__typename":"RecommendedPagesStatus"},"$ROOT_QUERY.getRecommendedPagesSpaceStatus({\"entityId\":\"GMG\"})":{"recommendedPagesEnabled":false,"defaultBehavior":"HIDDEN","__typename":"RecommendedPagesSpaceStatus"},"$Space:1572867.currentUser":{"isAnonymouslyAuthorized":true,"__typename":"SpaceUserMetadata","isAdmin":false},"$Space:1572867.settings.customHeaderAndFooter.header":{"html":"","js":{"type":"json","json":[]},"css":"","spaUnfriendlyMacros":[],"__typename":"HtmlMeta"},"$Space:1572867.settings.customHeaderAndFooter":{"header":{"type":"id","generated":true,"id":"$Space:1572867.settings.customHeaderAndFooter.header","typename":"HtmlMeta"},"footer":{"type":"id","generated":true,"id":"$Space:1572867.settings.customHeaderAndFooter.footer","typename":"HtmlMeta"},"__typename":"SpaceSettingsMetadata"},"$Space:1572867.settings.customHeaderAndFooter.footer":{"html":"","js":{"type":"json","json":[]},"css":"","spaUnfriendlyMacros":[],"__typename":"HtmlMeta"},"$Space:1572867.settings":{"customHeaderAndFooter":{"type":"id","generated":true,"id":"$Space:1572867.settings.customHeaderAndFooter","typename":"SpaceSettingsMetadata"},"__typename":"SpaceSettings","routeOverrideEnabled":true},"$ROOT_QUERY.dataSecurityPolicy.isActionEnabledForContent({\"action\":\"PAGE_EXPORT\",\"contentId\":\"1577454\",\"contentStatus\":\"CURRENT\",\"contentVersion\":1,\"spaceKey\":\"GMG\"})":{"action":"PAGE_EXPORT","allowed":true,"__typename":"DataSecurityPolicyDecision"},"$ROOT_QUERY.dataSecurityPolicy":{"isActionEnabledForContent({\"action\":\"PAGE_EXPORT\",\"contentId\":\"1577454\",\"contentStatus\":\"CURRENT\",\"contentVersion\":1,\"spaceKey\":\"GMG\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.dataSecurityPolicy.isActionEnabledForContent({\"action\":\"PAGE_EXPORT\",\"contentId\":\"1577454\",\"contentStatus\":\"CURRENT\",\"contentVersion\":1,\"spaceKey\":\"GMG\"})","typename":"DataSecurityPolicyDecision"},"__typename":"Confluence_dataSecurityPolicy"},"$ROOT_QUERY.confluence_teamPresenceContentSetting({\"cloudId\":\"af8a0353-4012-458b-85c4-350b5244d75c\",\"spaceKey\":\"GMG\"})":{"isEnabledOnContentView":true,"__typename":"ConfluenceTeamPresence"},"$ROOT_QUERY.comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":3,\"pageId\":\"1577454\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})":{"nodes":[],"totalCount":0,"__typename":"PaginatedCommentList"},"$ROOT_QUERY.comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":2000,\"pageId\":\"1577454\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})":{"nodes":[],"totalCount":0,"__typename":"PaginatedCommentList"},"ROOT_QUERY.webPanels({\"contentId\":\"1577454\",\"location\":\"atl.footer\"}).0":{"moduleKey":"create-dialog-init-params","completeKey":"com.atlassian.confluence.plugins.confluence-create-content-plugin:create-dialog-init-params","html":"","location":"atl.footer","label":null,"weight":1000,"name":null,"__typename":"WebPanel"},"$ROOT_QUERY.comments({\"depth\":\"ALL\",\"pageId\":\"1577454\",\"type\":\"UNRESOLVED\"})":{"count":0,"nodes":[],"__typename":"PaginatedCommentList"},"Content:1577454":{"id":"1577454","properties({\"key\":\"editor\"})":{"type":"id","generated":true,"id":"$Content:1577454.properties({\"key\":\"editor\"})","typename":"PaginatedJsonContentPropertyList"},"metadata":{"type":"id","generated":true,"id":"$Content:1577454.metadata","typename":"ContentMetadata"},"__typename":"Content","classificationLevelDetails":{"type":"id","generated":true,"id":"$Content:1577454.classificationLevelDetails","typename":"ClassificationLevelDetails"},"contentState({\"isDraft\":false})":null,"contentStateLastUpdated({\"format\":\"USER_FRIENDLY\"})":null,"type":"page","operations":[{"type":"id","generated":true,"id":"Content:1577454.operations.0","typename":"OperationCheckResult"}],"subType":null,"space":{"type":"id","generated":false,"id":"Space:1572867","typename":"Space"},"title":"Author Interface Description Files","status":"current","version":{"type":"id","generated":true,"id":"$Content:1577454.version","typename":"Version"},"draftVersion":{"type":"id","generated":true,"id":"$Content:1577454.draftVersion","typename":"Version"},"hasInheritedRestrictions":false,"hasViewRestrictions":false,"hasRestrictions":false,"properties({\"key\":\"content-appearance-published\"})":{"type":"id","generated":true,"id":"$Content:1577454.properties({\"key\":\"content-appearance-published\"})","typename":"PaginatedJsonContentPropertyList"},"history":{"type":"id","generated":true,"id":"$Content:1577454.history","typename":"History"},"properties({\"key\":\"emoji-title-published\"})":{"type":"id","generated":true,"id":"$Content:1577454.properties({\"key\":\"emoji-title-published\"})","typename":"PaginatedJsonContentPropertyList"},"properties({\"key\":\"page-title-property-published\"})":{"type":"id","generated":true,"id":"$Content:1577454.properties({\"key\":\"page-title-property-published\"})","typename":"PaginatedJsonContentPropertyList"},"contentProperties":{"type":"id","generated":true,"id":"$Content:1577454.contentProperties","typename":"ContentProperties"},"contentReactionsSummary":{"type":"id","generated":true,"id":"$Content:1577454.contentReactionsSummary","typename":"ReactionsSummaryResponse"},"body":{"type":"id","generated":true,"id":"$Content:1577454.body","typename":"ContentBodyPerRepresentation"},"properties({\"key\":\"page-title-property-draft\"})":{"type":"id","generated":true,"id":"$Content:1577454.properties({\"key\":\"page-title-property-draft\"})","typename":"PaginatedJsonContentPropertyList"},"properties({\"keys\":[\"cover-picture-id-published\",\"editor\",\"import-source\",\"imported-page-modified-date\"]})":{"type":"id","generated":true,"id":"$Content:1577454.properties({\"keys\":[\"cover-picture-id-published\",\"editor\",\"import-source\",\"imported-page-modified-date\"]})","typename":"PaginatedJsonContentPropertyList"},"macroRenderedOutput":[],"labels({\"orderBy\":{\"direction\":\"ASCENDING\",\"sortField\":\"LABELLING_CREATIONDATE\"}})":{"type":"id","generated":true,"id":"$Content:1577454.labels({\"orderBy\":{\"direction\":\"ASCENDING\",\"sortField\":\"LABELLING_CREATIONDATE\"}})","typename":"PaginatedLabelList"}},"$Content:1577454.properties({\"key\":\"editor\"}).nodes.0":{"id":null,"key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1577454.properties({\"key\":\"editor\"})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577454","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577454.metadata.frontend":{"fabricEditorSupported":true,"__typename":"ContentMetadata_SpaFriendlyMetadataProvider_frontend","fabricEditorEligibility":"SUPPORTED","contentHash":"18109","embedded":true,"collabService":"ncs","coverPictureWidth":"full"},"$Content:1577454.metadata":{"frontend":{"type":"id","generated":true,"id":"$Content:1577454.metadata.frontend","typename":"ContentMetadata_SpaFriendlyMetadataProvider_frontend"},"__typename":"ContentMetadata","sourceTemplateEntityId":"","lastModifiedDate":"2025-11-03T14:39:29.660Z"},"$ROOT_QUERY.content({\"id\":\"1577454\"})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Content:1577454.classificationLevelDetails":{"classificationLevel":null,"featureEnabled":false,"source":null,"__typename":"ClassificationLevelDetails"},"$ROOT_QUERY.contentSmartLinks({\"id\":\"1577454\"})":{"nodes":[],"__typename":"PaginatedSmartLinkList"},"$ROOT_QUERY.spaceSidebarLinks({\"spaceKey\":\"GMG\"})":{"quick":[],"__typename":"SpaceSidebarLinks","main({\"includeHidden\":true})":[{"type":"id","generated":false,"id":"SpaceSidebarLink:98","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:108","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:99","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:109","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:141","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:201","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:142","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:111","typename":"SpaceSidebarLink"}]},"SpaceSidebarLink:98":{"id":"98","webItemKey":"spacebar-pages","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-pages","title":"Pages","url":"\u002Fwiki\u002Fcollector\u002Fpages.action?key=GMG","position":14,"styleClass":"wiki","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Pages","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:108":{"id":"108","webItemKey":"spacebar-automation","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-automation","title":"Automation","url":"\u002Fwiki\u002Fspaces\u002FGMG\u002Fsettings\u002Fautomation#\u002Ftab\u002Frule-library","position":24,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Automation","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:99":{"id":"99","webItemKey":"spacebar-blogs","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-blogs","title":"Blog","url":"\u002Fwiki\u002Fpages\u002Fviewrecentblogposts.action?key=GMG","position":25,"styleClass":"blog","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Blog","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:109":{"id":"109","webItemKey":"spacebar-databases","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-databases","title":"Databases","url":"\u002Fwiki\u002Fdisplay\u002FGMG\u002Fcustomcontent\u002Flist\u002Fac%3Acom.k15t.orderly.databases%3Adatabase","position":26,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Databases","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:141":{"id":"141","webItemKey":"spacebar-apps","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-apps","title":"Apps","url":"\u002Fwiki\u002Fspaces\u002FGMG\u002Fapps","position":30,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Apps","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:201":{"id":"201","webItemKey":"spacebar-content-manager","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-content-manager","title":"Content manager","url":"#","position":31,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Content manager","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:142":{"id":"142","webItemKey":"spacebar-shortcuts","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-shortcuts","title":"Shortcuts","url":"\u002Fwiki\u002Fspaces\u002FGMG\u002Fshortcuts","position":36,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Shortcuts","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:111":{"id":"111","webItemKey":"space-calendar-sidebar-link","webItemCompleteKey":"com.atlassian.confluence.extra.team-calendars:space-calendar-sidebar-link","title":"Calendars","url":"\u002Fwiki\u002Fdisplay\u002FGMG\u002Fcalendars","position":43,"styleClass":"space-calendar-sidebar-link","icon":null,"iconClass":null,"hidden":true,"canHide":true,"tooltip":"Calendars","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"$Space:1572867.icon":{"path":"\u002Fdownload\u002Fattachments\u002F1572868\u002FGMG?version=4&modificationDate=1709404934962&cacheVersion=1&api=v2","__typename":"Icon"},"Content:1572869":{"id":"1572869","__typename":"Content","title":"Great Migrations Documentation Home","type":"page"},"Space:1572867.operations.0":{"operation":"read","targetType":"space","__typename":"OperationCheckResult"},"$Space:1572867.history":{"createdDate":"2012-11-26T01:06:52.443Z","__typename":"SpaceHistory"},"Content:1577454.operations.0":{"operation":"read","targetType":"page","__typename":"OperationCheckResult"},"$ROOT_QUERY.contentAnalyticsViewers({\"contentId\":\"1577454\"})":{"count":4,"__typename":"ContentAnalyticsViewers"},"$Content:1577454.version":{"contentTypeModified":false,"number":28,"friendlyWhen":"Nov 03, 2025","by":{"type":"id","generated":true,"id":"$Content:1577454.version.by","typename":"KnownUser"},"when":"2025-11-03T14:39:29.660Z","__typename":"Version","message":"","confRev":"confluence$content$1577454.56"},"$Content:1577454.version.by":{"displayName":"Mark Juras","__typename":"KnownUser","type":"known","accountId":"557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","profilePicture":{"type":"id","generated":true,"id":"$Content:1577454.version.by.profilePicture","typename":"Icon"}},"$Content:1577454.draftVersion":{"contentTypeModified":false,"number":1,"friendlyWhen":"Nov 03, 2025","by":{"type":"id","generated":true,"id":"$Content:1577454.draftVersion.by","typename":"KnownUser"},"when":"2025-11-03T14:40:26.406Z","__typename":"Version"},"$Content:1577454.draftVersion.by":{"displayName":"Mark Juras","__typename":"KnownUser"},"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"archived\",\"current\",\"draft\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).pageInfo":{"hasNextPage":false,"endCursor":null,"__typename":"PageInfoV2"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8})":{"pageInfo":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).pageInfo","typename":"PageInfoV2"},"nodes":[{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0","typename":"Macro"}],"__typename":"MacroConnection"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0":{"macroId":"82cfbfa0-1857-4598-a295-7b3e71d111c8","contentId":"1577454","renderedMacro({\"mode\":\"RENDERER\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"})","typename":"RenderedMacro"},"__typename":"Macro"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"})":{"value":"\u003Cdiv class=\"panel conf-macro output-block\" data-hasbody=\"true\" data-layout=\"default\" data-local-id=\"c36f03b7-74ea-4866-8bc0-713360e56b4e\" data-macro-id=\"82cfbfa0-1857-4598-a295-7b3e71d111c8\" data-macro-name=\"panel\" style=\"background-color: CCFFFF;border-width: 1px;\"\u003E\u003Cdiv class=\"panelHeader\" style=\"border-bottom-width: 1px;background-color: CCFFFF;\"\u003E\u003Cb\u003ETable of Contents\u003C\u002Fb\u003E\u003C\u002Fdiv\u003E\u003Cdiv class=\"panelContent\" style=\"background-color: CCFFFF;\"\u003E\n\u003Cdiv class=\"toc-macro client-side-toc-macro conf-macro output-block\" data-hasbody=\"false\" data-headerelements=\"H1,H2,H3,H4,H5,H6,H7\" data-layout=\"default\" data-local-id=\"b5a790ed-895e-499e-b1fd-195a999b2946\" data-macro-id=\"ae2ee7af-170d-4677-8c5d-e60885ab3c20\" data-macro-name=\"toc\"\u003E \u003C\u002Fdiv\u003E\n\u003C\u002Fdiv\u003E\u003C\u002Fdiv\u003E","macroRenderedRepresentation":"view","macroBodyStorage":"\u003Cac:structured-macro ac:name=\"toc\" ac:schema-version=\"1\" data-layout=\"default\" ac:local-id=\"b5a790ed-895e-499e-b1fd-195a999b2946\" ac:macro-id=\"ae2ee7af-170d-4677-8c5d-e60885ab3c20\" \u002F\u003E","webResource":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource","typename":"WebResourceDependenciesV2"},"mediaToken":null,"__typename":"RenderedMacro"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource":{"contexts":{"type":"json","json":["toc-macro-client-impl"]},"keys":{"type":"json","json":["org.randombits.confluence.toc:client-side-toc-resources"]},"superbatch":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource.superbatch","typename":"SuperBatchWebResourcesV2"},"tags":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource.tags","typename":"WebResourceTagsV2"},"uris":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource.uris","typename":"WebResourceUrisV2"},"__typename":"WebResourceDependenciesV2"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource.superbatch":{"metatags":"","__typename":"SuperBatchWebResourcesV2"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource.tags":{"css":"\u003Clink type=\"text\u002Fcss\" rel=\"stylesheet\" nonce=\"aa283e8f789345b991da3b3ea00e78cb\" href=\"\u002F\u002Fd2mgsob4fppcrd.cloudfront.net\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F-629736684\u002Fh\u002Fd8dc206fe05dd013800d23c42b8f2ef22d9ecebab3eb074c4c169d59993c14f1\u002F_\u002Fdownload\u002Fbatch\u002Forg.randombits.confluence.toc:client-side-toc-resources\u002Forg.randombits.confluence.toc:client-side-toc-resources.css?assetVersion=1000.0.0-95b70ecb409d19827&externals=__local-default__&relative-url=true\" data-wrm-key=\"org.randombits.confluence.toc:client-side-toc-resources\" data-wrm-batch-type=\"resource\" media=\"all\"\u003E\n","data":null,"js":"\u003Cscript nonce=\"aa283e8f789345b991da3b3ea00e78cb\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fd2mgsob4fppcrd.cloudfront.net\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F-629736684\u002Fh\u002Fa9361c2a3345079297074731ae7f0d8bc6581b191b6d3fd067318b19329791dc\u002F_\u002Fdownload\u002Fbatch\u002Fconfluence.web.resources:event\u002Fconfluence.web.resources:event.js?assetVersion=1000.0.0-95b70ecb409d19827&externals=__local-default__\" data-wrm-key=\"confluence.web.resources:event\" data-wrm-batch-type=\"resource\" data-initially-rendered\u003E\u003C\u002Fscript\u003E\n\u003Cscript nonce=\"aa283e8f789345b991da3b3ea00e78cb\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fd2mgsob4fppcrd.cloudfront.net\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F-629736684\u002Fh\u002F73339921823d297ba7c1878918af8a2852921b6210dd737e12c6f443c3131cf7\u002F_\u002Fdownload\u002Fbatch\u002Fconfluence.web.resources:connect-helper\u002Fconfluence.web.resources:connect-helper.js?assetVersion=1000.0.0-95b70ecb409d19827&externals=__local-default__\" data-wrm-key=\"confluence.web.resources:connect-helper\" data-wrm-batch-type=\"resource\" data-initially-rendered\u003E\u003C\u002Fscript\u003E\n\u003Cscript nonce=\"aa283e8f789345b991da3b3ea00e78cb\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fd2mgsob4fppcrd.cloudfront.net\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F-629736684\u002Fh\u002F7e4c4858262be7b470be6883924ebe8862193c91b1d0eb8218ff38e8ff3c6807\u002F_\u002Fdownload\u002Fbatch\u002Forg.randombits.confluence.toc:client-side-toc-resources\u002Forg.randombits.confluence.toc:client-side-toc-resources.js?assetVersion=1000.0.0-95b70ecb409d19827&externals=__local-default__&locale=en-GB\" data-wrm-key=\"org.randombits.confluence.toc:client-side-toc-resources\" data-wrm-batch-type=\"resource\" data-initially-rendered\u003E\u003C\u002Fscript\u003E\n","__typename":"WebResourceTagsV2"},"$ROOT_QUERY.macros({\"blocklist\":[\"include\",\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"section\",\"table-filter\",\"children\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1577454\",\"first\":8}).nodes.0.renderedMacro({\"mode\":\"RENDERER\"}).webResource.uris":{"css":null,"data":null,"js":null,"__typename":"WebResourceUrisV2"},"-page.metadata.banner-leading:content\u002F1577454":{"id":"-page.metadata.banner-leading","label":null,"cacheKey":"-page.metadata.banner-leading:content\u002F1577454","styleClass":"section-page.metadata.banner-leading first","items":[{"type":"id","generated":false,"id":"com.atlassian.confluence.plugins.confluence-jira-metadata:content-metadata-jira; ","typename":"WebItem"}],"__typename":"WebSection"},"com.atlassian.confluence.plugins.confluence-jira-metadata:content-metadata-jira; ":{"accessKey":null,"completeKey":"com.atlassian.confluence.plugins.confluence-jira-metadata:content-metadata-jira","hasCondition":false,"id":"content-metadata-jira","icon":null,"params":null,"label":"Jira links","moduleKey":"content-metadata-jira","section":"page.metadata.banner","styleClass":"aui-button aui-button-subtle content-metadata-jira tipsy-disabled hidden","tooltip":null,"url":"","urlWithoutContextPath":"","weight":30,"__typename":"WebItem"},"JsonContentProperty:4096005":{"id":"4096005","key":"content-appearance-published","value":"\"full-width\"","version":{"type":"id","generated":true,"id":"$JsonContentProperty:4096005.version","typename":"Version"},"__typename":"JsonContentProperty"},"$JsonContentProperty:4096005.version":{"number":1,"__typename":"Version"},"$Content:1577454.properties({\"key\":\"content-appearance-published\"})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:4096005","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577454.history":{"createdDate":"2012-12-11T16:13:13.770Z","createdBy":{"type":"id","generated":true,"id":"$Content:1577454.history.createdBy","typename":"KnownUser"},"ownedBy":{"type":"id","generated":true,"id":"$Content:1577454.history.ownedBy","typename":"KnownUser"},"lastOwnedBy":null,"__typename":"History"},"$Content:1577454.history.createdBy":{"type":"known","displayName":"Mark Juras","accountId":"557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"KnownUser","profilePicture":{"type":"id","generated":true,"id":"$Content:1577454.history.createdBy.profilePicture","typename":"Icon"}},"$Content:1577454.history.createdBy.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"Icon"},"$Content:1577454.history.ownedBy":{"type":"known","displayName":"Mark Juras","accountId":"557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"KnownUser","profilePicture":{"type":"id","generated":true,"id":"$Content:1577454.history.ownedBy.profilePicture","typename":"Icon"}},"$Content:1577454.history.ownedBy.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"Icon"},"$Content:1577454.properties({\"key\":\"emoji-title-published\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577454.properties({\"key\":\"page-title-property-published\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"JsonContentProperty:P1577454":{"id":"P1577454","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty","version":null},"$Content:1577454.version.by.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"Icon"},"$Content:1577454.contentProperties.latest":{"generatedBy":null,"__typename":"PublishedContentProperties"},"$Content:1577454.contentProperties":{"latest":{"type":"id","generated":true,"id":"$Content:1577454.contentProperties.latest","typename":"PublishedContentProperties"},"__typename":"ContentProperties"},"$ROOT_QUERY.content({\"embeddedContentRender\":null,\"id\":\"1577454\",\"version\":null})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.contentContributors({\"id\":\"1577454\",\"limit\":4})":{"count":1,"isCurrentUserContributor":false,"isOwnerContributor":true,"nodes":[{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1577454\",\"limit\":4}).nodes.0","typename":"KnownUser"}],"__typename":"ContentContributors"},"$ROOT_QUERY.contentContributors({\"id\":\"1577454\",\"limit\":4}).nodes.0":{"type":"known","displayName":"Mark Juras","accountId":"557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"KnownUser","profilePicture":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1577454\",\"limit\":4}).nodes.0.profilePicture","typename":"Icon"}},"$ROOT_QUERY.contentContributors({\"id\":\"1577454\",\"limit\":4}).nodes.0.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F557058:1edf8d9d-6a73-4cb8-861d-24f08cb981ed","__typename":"Icon"},"$Space:1572867.lookAndFeel.headings.0":{"key":"color","value":"var(--ds-text, #172b4d)","__typename":"MapOfStringToString"},"$Space:1572867.lookAndFeel":{"headings":[{"type":"id","generated":true,"id":"$Space:1572867.lookAndFeel.headings.0","typename":"MapOfStringToString"}],"content":{"type":"id","generated":true,"id":"$Space:1572867.lookAndFeel.content","typename":"ContentLookAndFeel"},"__typename":"LookAndFeel"},"$Space:1572867.lookAndFeel.content.header":{"background":"var(--ds-surface, #FFFFFF)","backgroundAttachment":null,"backgroundBlendMode":null,"backgroundClip":null,"backgroundColor":"var(--ds-surface, #FFFFFF)","backgroundImage":"none","backgroundOrigin":null,"backgroundPosition":null,"backgroundRepeat":null,"backgroundSize":"auto","borderRadius":"0","padding":"0","__typename":"ContainerLookAndFeel"},"$Space:1572867.lookAndFeel.content":{"header":{"type":"id","generated":true,"id":"$Space:1572867.lookAndFeel.content.header","typename":"ContainerLookAndFeel"},"__typename":"ContentLookAndFeel","screen":{"type":"id","generated":true,"id":"$Space:1572867.lookAndFeel.content.screen","typename":"ScreenLookAndFeel"},"container":{"type":"id","generated":true,"id":"$Space:1572867.lookAndFeel.content.container","typename":"ContainerLookAndFeel"}},"ROOT_QUERY.webPanels({\"contentId\":\"1577454\",\"location\":\"atl.page.content.footer.actions\"}).0":{"moduleKey":"content-like-panel","completeKey":"com.atlassian.confluence.plugins.confluence-like:content-like-panel","html":"\u003Cdiv id=\"likes-section\"\u003E\u003C\u002Fdiv\u003E","location":"atl.page.content.footer.actions","label":null,"weight":1000,"name":"Content Likes Panel","__typename":"WebPanel"},"$Content:1577454.contentReactionsSummary":{"reactionsCount":0,"ari":"ari:cloud:confluence:af8a0353-4012-458b-85c4-350b5244d75c:page\u002F1577454","containerAri":null,"reactionsSummaryForEmoji":[],"__typename":"ReactionsSummaryResponse"},"$Content:1577454.body.atlas_doc_format.mediaToken":{"token":"eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhZmY0MTY2Zi1jZGU2LTQ4MTEtODllMy03MGUwMTlkNGJlYTMiLCJhY2Nlc3MiOnsidXJuOmZpbGVzdG9yZTpjb2xsZWN0aW9uOmNvbnRlbnRJZC0xNTc3NDU0IjpbInJlYWQiXX0sImV4cCI6MTc2NTQ0NzkxMSwibmJmIjoxNzY1NDQ1MDMxLCJodHRwczovL2lkLmF0bGFzc2lhbi5jb20vYXBwQWNjcmVkaXRlZCI6ZmFsc2V9.xZTemmAjzolS9GpcDV3uPlqtzxbMbiO_832s2dm3TZk","__typename":"EmbeddedMediaToken"},"$Content:1577454.body.atlas_doc_format":{"mediaToken":{"type":"id","generated":true,"id":"$Content:1577454.body.atlas_doc_format.mediaToken","typename":"EmbeddedMediaToken"},"__typename":"ContentBody"},"$Content:1577454.body":{"atlas_doc_format":{"type":"id","generated":true,"id":"$Content:1577454.body.atlas_doc_format","typename":"ContentBody"},"__typename":"ContentBodyPerRepresentation","dynamic":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic","typename":"ContentBody"}},"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"current\",\"draft\",\"archived\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.mediaConfiguration":{"clientId":"aff4166f-cde6-4811-89e3-70e019d4bea3","fileStoreUrl":"https:\u002F\u002Fapi.media.atlassian.com","__typename":"MediaConfiguration"},"$Content:1577454.properties({\"key\":\"page-title-property-draft\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"current\",\"archived\",\"draft\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"archived\",\"current\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"PTPage:1577454":{"id":"1577454","nearestAncestors({\"first\":1})":{"type":"id","generated":true,"id":"$PTPage:1577454.nearestAncestors({\"first\":1})","typename":"PTPaginatedPageList"},"__typename":"PTPage","title":"Author Interface Description Files","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1577454.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1577454.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1577454.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"nearestAncestors":{"type":"id","generated":true,"id":"$PTPage:1577454.nearestAncestors","typename":"PTPaginatedPageList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1577454.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1577454.followingSiblings","typename":"PTPaginatedPageList"},"children":{"type":"id","generated":true,"id":"$PTPage:1577454.children","typename":"PTPaginatedPageList"}},"PTPage:1578862":{"id":"1578862","title":"Preparation","__typename":"PTPage","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1578862.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1578862.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1578862.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1578862.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1578862.followingSiblings","typename":"PTPaginatedPageList"}},"$PTPage:1577454.nearestAncestors({\"first\":1}).edges.0":{"node":{"type":"id","generated":false,"id":"PTPage:1578862","typename":"PTPage"},"__typename":"PTPageEdge"},"$PTPage:1577454.nearestAncestors({\"first\":1})":{"edges":[{"type":"id","generated":true,"id":"$PTPage:1577454.nearestAncestors({\"first\":1}).edges.0","typename":"PTPageEdge"}],"__typename":"PTPaginatedPageList"},"$PTPage:1577454.createdDate({\"format\":\"MILLIS\"})":{"value":"1355242393770","__typename":"ConfluenceDate"},"$PTPage:1577454.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1577454\u002FAuthor+Interface+Description+Files","__typename":"Map_LinkType_String"},"$PTPage:1577454.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577454","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1577454.nearestAncestors.pageInfo":{"hasNextPage":false,"endCursor":"2","__typename":"PTPageInfo"},"$PTPage:1577454.nearestAncestors":{"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1577454.nearestAncestors.pageInfo","typename":"PTPageInfo"},"nodes":[{"type":"id","generated":false,"id":"PTPage:1578862","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1575180","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1572869","typename":"PTPage"}],"__typename":"PTPaginatedPageList"},"$PTPage:1578862.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893176300","__typename":"ConfluenceDate"},"$PTPage:1578862.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1578862\u002FPreparation","__typename":"Map_LinkType_String"},"$PTPage:1578862.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1576351":{"id":"1576351","title":"Samples","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1576351.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1576351.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1576351.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1576351.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893164367","__typename":"ConfluenceDate"},"$PTPage:1576351.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1576351\u002FSamples","__typename":"Map_LinkType_String"},"JsonContentProperty:P1576351":{"id":"P1576351","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1576351.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1576351","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1581452":{"id":"1581452","title":"User Interface","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1581452.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1581452.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1581452.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1581452.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893153797","__typename":"ConfluenceDate"},"$PTPage:1581452.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1581452\u002FUser+Interface","__typename":"Map_LinkType_String"},"$PTPage:1581452.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1576664":{"id":"1576664","title":"Concepts","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1576664.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1576664.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1576664.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1576664.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893133473","__typename":"ConfluenceDate"},"$PTPage:1576664.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1576664\u002FConcepts","__typename":"Map_LinkType_String"},"$PTPage:1576664.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1577381":{"id":"1577381","title":"Introduction","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1577381.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1577381.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1577381.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1577381.createdDate({\"format\":\"MILLIS\"})":{"value":"1353892283173","__typename":"ConfluenceDate"},"$PTPage:1577381.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1577381\u002FIntroduction","__typename":"Map_LinkType_String"},"$PTPage:1577381.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1578862.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1576351","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1581452","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1576664","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1577381","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1578862.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1578862.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1574931":{"id":"1574931","title":"Reporting","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1574931.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1574931.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1574931.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1574931.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893007967","__typename":"ConfluenceDate"},"$PTPage:1574931.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1574931\u002FReporting","__typename":"Map_LinkType_String"},"$PTPage:1574931.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1575648":{"id":"1575648","title":"Translation","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1575648.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1575648.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1575648.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1575648.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893326170","__typename":"ConfluenceDate"},"$PTPage:1575648.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1575648\u002FTranslation","__typename":"Map_LinkType_String"},"$PTPage:1575648.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1576860":{"id":"1576860","title":"Deployment","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1576860.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1576860.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1576860.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1576860.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893340953","__typename":"ConfluenceDate"},"$PTPage:1576860.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1576860\u002FDeployment","__typename":"Map_LinkType_String"},"$PTPage:1576860.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1574075":{"id":"1574075","title":"Verification","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1574075.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1574075.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1574075.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1574075.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893358983","__typename":"ConfluenceDate"},"$PTPage:1574075.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1574075\u002FVerification","__typename":"Map_LinkType_String"},"$PTPage:1574075.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1587949":{"id":"1587949","title":"Reference","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1587949.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1587949.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1587949.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1587949.createdDate({\"format\":\"MILLIS\"})":{"value":"1353893375117","__typename":"ConfluenceDate"},"$PTPage:1587949.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1587949\u002FReference","__typename":"Map_LinkType_String"},"JsonContentProperty:P1587949":{"id":"P1587949","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1587949.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1587949","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1578862.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1574931","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1575648","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1576860","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1574075","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1587949","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1578862.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1578862.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1575180":{"id":"1575180","title":"gmStudio User Guide","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1575180.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1575180.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1575180.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1575180.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1575180.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1575180.createdDate({\"format\":\"MILLIS\"})":{"value":"1353892012570","__typename":"ConfluenceDate"},"$PTPage:1575180.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1575180\u002FgmStudio+User+Guide","__typename":"Map_LinkType_String"},"JsonContentProperty:P1575180":{"id":"P1575180","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1575180.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1575180","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1578105":{"id":"1578105","title":"Great Migrations LLC","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1578105.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1578105.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1578105.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1578105.createdDate({\"format\":\"MILLIS\"})":{"value":"1372358878760","__typename":"ConfluenceDate"},"$PTPage:1578105.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1578105\u002FGreat+Migrations+LLC","__typename":"Map_LinkType_String"},"$PTPage:1578105.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1575180.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1578105","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1575180.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1575180.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1576142":{"id":"1576142","title":"gmBasic Language Reference","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1576142.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1576142.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1576142.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1576142.createdDate({\"format\":\"MILLIS\"})":{"value":"1358197519883","__typename":"ConfluenceDate"},"$PTPage:1576142.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1576142\u002FgmBasic+Language+Reference","__typename":"Map_LinkType_String"},"JsonContentProperty:P1576142":{"id":"P1576142","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1576142.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1576142","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1575519":{"id":"1575519","title":"Articles and Whitepapers","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1575519.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1575519.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1575519.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1575519.createdDate({\"format\":\"MILLIS\"})":{"value":"1358370571547","__typename":"ConfluenceDate"},"$PTPage:1575519.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1575519\u002FArticles+and+Whitepapers","__typename":"Map_LinkType_String"},"JsonContentProperty:P1575519":{"id":"P1575519","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1575519.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1575519","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1575873":{"id":"1575873","title":"Partnering with Great Migrations","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1575873.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1575873.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1575873.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1575873.createdDate({\"format\":\"MILLIS\"})":{"value":"1409840167217","__typename":"ConfluenceDate"},"$PTPage:1575873.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1575873\u002FPartnering+with+Great+Migrations","__typename":"Map_LinkType_String"},"JsonContentProperty:P1575873":{"id":"P1575873","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1575873.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1575873","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1576905":{"id":"1576905","title":"Resources","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1576905.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1576905.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1576905.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1576905.createdDate({\"format\":\"MILLIS\"})":{"value":"1525885690380","__typename":"ConfluenceDate"},"$PTPage:1576905.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1576905\u002FResources","__typename":"Map_LinkType_String"},"$PTPage:1576905.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1573912":{"id":"1573912","title":"Services","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1573912.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1573912.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1573912.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1573912.createdDate({\"format\":\"MILLIS\"})":{"value":"1360691750397","__typename":"ConfluenceDate"},"$PTPage:1573912.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1573912\u002FServices","__typename":"Map_LinkType_String"},"$PTPage:1573912.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1575603":{"id":"1575603","title":"News","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1575603.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1575603.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1575603.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1575603.createdDate({\"format\":\"MILLIS\"})":{"value":"1525885896293","__typename":"ConfluenceDate"},"$PTPage:1575603.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1575603\u002FNews","__typename":"Map_LinkType_String"},"JsonContentProperty:P1575603":{"id":"P1575603","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1575603.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1575603","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1575180.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1576142","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1575519","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1575873","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1576905","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1573912","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1575603","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1575180.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1575180.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1572869":{"id":"1572869","title":"Great Migrations Documentation Home","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1572869.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1572869.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1572869.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1572869.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1572869.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1572869.createdDate({\"format\":\"MILLIS\"})":{"value":"1355756589160","__typename":"ConfluenceDate"},"$PTPage:1572869.links":{"webui":"\u002Fspaces\u002FGMG\u002Foverview","__typename":"Map_LinkType_String"},"JsonContentProperty:P1572869":{"id":"P1572869","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1572869.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1572869","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1572869.previousSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1572869.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1572869.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$PTPage:1572869.followingSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1572869.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1572869.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1587976":{"id":"1587976","title":"Set the Build Order","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1587976.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1587976.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1587976.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1587976.createdDate({\"format\":\"MILLIS\"})":{"value":"1355242393593","__typename":"ConfluenceDate"},"$PTPage:1587976.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1587976\u002FSet+the+Build+Order","__typename":"Map_LinkType_String"},"JsonContentProperty:P1587976":{"id":"P1587976","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1587976.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1587976","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1574919":{"id":"1574919","title":"Create A Migration Project","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1574919.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1574919.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1574919.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1574919.createdDate({\"format\":\"MILLIS\"})":{"value":"1355242393910","__typename":"ConfluenceDate"},"$PTPage:1574919.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1574919\u002FCreate+A+Migration+Project","__typename":"Map_LinkType_String"},"$PTPage:1574919.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1577454.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1587976","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1574919","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1577454.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1577454.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1573932":{"id":"1573932","title":"Author Interop Assemblies (optional)","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1573932.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1573932.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1573932.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1573932.createdDate({\"format\":\"MILLIS\"})":{"value":"1355242393850","__typename":"ConfluenceDate"},"$PTPage:1573932.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1573932\u002FAuthor+Interop+Assemblies+optional","__typename":"Map_LinkType_String"},"$PTPage:1573932.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1573923":{"id":"1573923","title":"Author Resx Files","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1573923.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1573923.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1573923.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1573923.createdDate({\"format\":\"MILLIS\"})":{"value":"1355242394000","__typename":"ConfluenceDate"},"$PTPage:1573923.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1573923\u002FAuthor+Resx+Files","__typename":"Map_LinkType_String"},"$PTPage:1573923.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1580604":{"id":"1580604","title":"Prepare Web Site Script","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1580604.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1580604.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1580604.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1580604.createdDate({\"format\":\"MILLIS\"})":{"value":"1355242394060","__typename":"ConfluenceDate"},"$PTPage:1580604.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1580604\u002FPrepare+Web+Site+Script","__typename":"Map_LinkType_String"},"$PTPage:1580604.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1577454.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1573932","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1573923","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1580604","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1577454.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1577454.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1577525":{"id":"1577525","title":"Generating Interface Description Files for External References using the gmStudio Wizard","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1577525.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1577525.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1577525.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1577525.createdDate({\"format\":\"MILLIS\"})":{"value":"1567364652520","__typename":"ConfluenceDate"},"$PTPage:1577525.links":{"webui":"\u002Fspaces\u002FGMG\u002Fpages\u002F1577525\u002FGenerating+Interface+Description+Files+for+External+References+using+the+gmStudio+Wizard","__typename":"Map_LinkType_String"},"$PTPage:1577525.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1577454.children":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1577525","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1577454.children.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1577454.children.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$Space:1572867.spaceTypeSettings.enabledContentTypes":{"isLivePagesEnabled":true,"isWhiteboardsEnabled":true,"isDatabasesEnabled":true,"__typename":"EnabledContentTypes"},"$Space:1572867.spaceTypeSettings":{"enabledContentTypes":{"type":"id","generated":true,"id":"$Space:1572867.spaceTypeSettings.enabledContentTypes","typename":"EnabledContentTypes"},"__typename":"SpaceTypeSettings"},"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"GMG\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"}).pageInfo":{"hasNextPage":true,"endCursor":"39","__typename":"PageInfo"},"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"GMG\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"})":{"pageInfo":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"GMG\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"}).pageInfo","typename":"PageInfo"},"nodes":[{"type":"id","generated":false,"id":"Content:379879449","typename":"Content"},{"type":"id","generated":false,"id":"Content:379584514","typename":"Content"},{"type":"id","generated":false,"id":"Content:293830690","typename":"Content"},{"type":"id","generated":false,"id":"Content:269975713","typename":"Content"},{"type":"id","generated":false,"id":"Content:198934615","typename":"Content"},{"type":"id","generated":false,"id":"Content:199163919","typename":"Content"},{"type":"id","generated":false,"id":"Content:135331873","typename":"Content"},{"type":"id","generated":false,"id":"Content:99450895","typename":"Content"},{"type":"id","generated":false,"id":"Content:38699041","typename":"Content"},{"type":"id","generated":false,"id":"Content:1585728","typename":"Content"},{"type":"id","generated":false,"id":"Content:1585251","typename":"Content"},{"type":"id","generated":false,"id":"Content:1584774","typename":"Content"},{"type":"id","generated":false,"id":"Content:1584514","typename":"Content"},{"type":"id","generated":false,"id":"Content:1584516","typename":"Content"},{"type":"id","generated":false,"id":"Content:1583970","typename":"Content"},{"type":"id","generated":false,"id":"Content:1583968","typename":"Content"},{"type":"id","generated":false,"id":"Content:1583575","typename":"Content"},{"type":"id","generated":false,"id":"Content:1583130","typename":"Content"},{"type":"id","generated":false,"id":"Content:1582674","typename":"Content"},{"type":"id","generated":false,"id":"Content:1582517","typename":"Content"},{"type":"id","generated":false,"id":"Content:1582286","typename":"Content"},{"type":"id","generated":false,"id":"Content:1581273","typename":"Content"},{"type":"id","generated":false,"id":"Content:1580983","typename":"Content"},{"type":"id","generated":false,"id":"Content:1580529","typename":"Content"},{"type":"id","generated":false,"id":"Content:1580480","typename":"Content"},{"type":"id","generated":false,"id":"Content:1580344","typename":"Content"},{"type":"id","generated":false,"id":"Content:1579788","typename":"Content"},{"type":"id","generated":false,"id":"Content:1579403","typename":"Content"},{"type":"id","generated":false,"id":"Content:1579292","typename":"Content"},{"type":"id","generated":false,"id":"Content:1579144","typename":"Content"},{"type":"id","generated":false,"id":"Content:1579135","typename":"Content"},{"type":"id","generated":false,"id":"Content:1578787","typename":"Content"},{"type":"id","generated":false,"id":"Content:1578448","typename":"Content"},{"type":"id","generated":false,"id":"Content:1577809","typename":"Content"},{"type":"id","generated":false,"id":"Content:1577820","typename":"Content"},{"type":"id","generated":false,"id":"Content:1577584","typename":"Content"},{"type":"id","generated":false,"id":"Content:1577249","typename":"Content"},{"type":"id","generated":false,"id":"Content:1576713","typename":"Content"},{"type":"id","generated":false,"id":"Content:1576669","typename":"Content"},{"type":"id","generated":false,"id":"Content:1576624","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"Content:379879449":{"id":"379879449","title":"Modernization Podcast Video Series Episode 3: Translation Myth Busters","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:379879449.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:379879449.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:379879449.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P379879449":{"id":"P379879449","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:379879449.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P379879449","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:379879449.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F12\u002F03\u002F379879449\u002FModernization+Podcast+Video+Series+Episode+3+Translation+Myth+Busters","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:379879449.metadata":{"lastModifiedDate":"2025-12-04T02:31:45.788Z","createdDate":"2025-12-04T02:29:19.557Z","__typename":"ContentMetadata"},"Content:379584514":{"id":"379584514","title":"gmStudio Release News: Wednesday, 03-December-2025","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:379584514.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:379584514.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:379584514.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P379584514":{"id":"P379584514","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:379584514.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P379584514","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:379584514.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F12\u002F03\u002F379584514\u002FgmStudio+Release+News+Wednesday+03-December-2025","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:379584514.metadata":{"lastModifiedDate":"2025-12-05T04:08:29.352Z","createdDate":"2025-12-04T02:21:56.976Z","__typename":"ContentMetadata"},"Content:293830690":{"id":"293830690","title":"Modernization Podcast Video Series Episode 2: Setting Modernization Project Scope and Budget","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:293830690.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:293830690.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:293830690.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P293830690":{"id":"P293830690","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:293830690.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P293830690","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:293830690.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F09\u002F25\u002F293830690\u002FModernization+Podcast+Video+Series+Episode+2+Setting+Modernization+Project+Scope+and+Budget","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:293830690.metadata":{"lastModifiedDate":"2025-09-25T16:43:56.810Z","createdDate":"2025-09-25T16:42:59.716Z","__typename":"ContentMetadata"},"Content:269975713":{"id":"269975713","title":"gmStudio Release News: Sunday, 10-August-2025","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:269975713.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:269975713.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:269975713.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P269975713":{"id":"P269975713","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:269975713.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P269975713","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:269975713.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F08\u002F10\u002F269975713\u002FgmStudio+Release+News+Sunday+10-August-2025","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:269975713.metadata":{"lastModifiedDate":"2025-08-11T01:01:22.902Z","createdDate":"2025-08-11T01:01:22.897Z","__typename":"ContentMetadata"},"Content:198934615":{"id":"198934615","title":"Modernization Podcast Video Series Episode 1: Using AI in software modernization","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:198934615.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:198934615.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:198934615.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P198934615":{"id":"P198934615","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:198934615.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P198934615","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:198934615.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F04\u002F08\u002F198934615\u002FModernization+Podcast+Video+Series+Episode+1+Using+AI+in+software+modernization","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:198934615.metadata":{"lastModifiedDate":"2025-09-25T16:43:31.851Z","createdDate":"2025-04-08T17:19:14.559Z","__typename":"ContentMetadata"},"Content:199163919":{"id":"199163919","title":"gmStudio Release News: Tuesday, 8-April-2025","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:199163919.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:199163919.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:199163919.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P199163919":{"id":"P199163919","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:199163919.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P199163919","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:199163919.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F04\u002F08\u002F199163919\u002FgmStudio+Release+News+Tuesday+8-April-2025","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:199163919.metadata":{"lastModifiedDate":"2025-04-08T17:18:29.186Z","createdDate":"2025-04-08T17:16:40.646Z","__typename":"ContentMetadata"},"Content:135331873":{"id":"135331873","title":"gmStudio Release News: Tuesday, 7-January-2025","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:135331873.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:135331873.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:135331873.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P135331873":{"id":"P135331873","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:135331873.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P135331873","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:135331873.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2025\u002F01\u002F07\u002F135331873\u002FgmStudio+Release+News+Tuesday+7-January-2025","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:135331873.metadata":{"lastModifiedDate":"2025-01-14T13:28:18.358Z","createdDate":"2025-01-08T03:50:21.103Z","__typename":"ContentMetadata"},"Content:99450895":{"id":"99450895","title":"gmStudio Release News: Tuesday, 17-Sept-2024","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:99450895.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:99450895.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:99450895.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P99450895":{"id":"P99450895","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:99450895.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P99450895","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:99450895.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2024\u002F09\u002F16\u002F99450895\u002FgmStudio+Release+News+Tuesday+17-Sept-2024","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:99450895.metadata":{"lastModifiedDate":"2024-09-17T02:03:51.408Z","createdDate":"2024-09-17T02:03:12.579Z","__typename":"ContentMetadata"},"Content:38699041":{"id":"38699041","title":"gmStudio Release News: Monday, 22-April-2024","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:38699041.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:38699041.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:38699041.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P38699041":{"id":"P38699041","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:38699041.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P38699041","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:38699041.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2024\u002F04\u002F22\u002F38699041\u002FgmStudio+Release+News+Monday+22-April-2024","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:38699041.metadata":{"lastModifiedDate":"2024-04-23T16:42:12.917Z","createdDate":"2024-04-22T18:59:20.339Z","__typename":"ContentMetadata"},"Content:1585728":{"id":"1585728","title":"gmStudio Release News: Wednesday, 20-December-2023","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1585728.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1585728.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1585728.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1585728":{"id":"P1585728","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1585728.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1585728","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1585728.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2023\u002F12\u002F20\u002F1585728\u002FgmStudio+Release+News+Wednesday+20-December-2023","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1585728.metadata":{"lastModifiedDate":"2023-12-21T03:25:01.370Z","createdDate":"2023-12-21T03:24:00.000Z","__typename":"ContentMetadata"},"Content:1585251":{"id":"1585251","title":"gmStudio Release News: Friday, 18-August-2023","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1585251.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1585251.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1585251.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1585251":{"id":"P1585251","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1585251.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1585251","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1585251.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2023\u002F08\u002F18\u002F1585251\u002FgmStudio+Release+News+Friday+18-August-2023","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1585251.metadata":{"lastModifiedDate":"2023-12-20T16:14:09.967Z","createdDate":"2023-08-18T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1584774":{"id":"1584774","title":"gmStudio Release News: Monday, 30-May-2023","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1584774.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1584774.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1584774.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1584774":{"id":"P1584774","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1584774.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1584774","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1584774.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2023\u002F05\u002F30\u002F1584774\u002FgmStudio+Release+News+Monday+30-May-2023","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1584774.metadata":{"lastModifiedDate":"2023-05-30T22:52:12.437Z","createdDate":"2023-05-30T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1584514":{"id":"1584514","title":"gmStudio Release News: Monday, 27-March-2023","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1584514.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1584514.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1584514.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1584514":{"id":"P1584514","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1584514.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1584514","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1584514.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2023\u002F03\u002F27\u002F1584514\u002FgmStudio+Release+News+Monday+27-March-2023","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1584514.metadata":{"lastModifiedDate":"2023-03-29T18:53:04.373Z","createdDate":"2023-03-27T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1584516":{"id":"1584516","title":"New Support Statements","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1584516.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1584516.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1584516.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1584516":{"id":"P1584516","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1584516.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1584516","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1584516.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2023\u002F03\u002F27\u002F1584516\u002FNew+Support+Statements","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1584516.metadata":{"lastModifiedDate":"2025-09-21T18:08:43.427Z","createdDate":"2023-03-27T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1583970":{"id":"1583970","title":"New Reports: Unused Symbols and Late Calls","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1583970.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1583970.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1583970.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1583970":{"id":"P1583970","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1583970.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1583970","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1583970.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2022\u002F12\u002F11\u002F1583970\u002FNew+Reports+Unused+Symbols+and+Late+Calls","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1583970.metadata":{"lastModifiedDate":"2022-12-11T15:46:52.680Z","createdDate":"2022-12-11T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1583968":{"id":"1583968","title":"gmStudio Release News: Sunday, 11-December-2022","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1583968.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1583968.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1583968.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1583968":{"id":"P1583968","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1583968.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1583968","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1583968.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2022\u002F12\u002F11\u002F1583968\u002FgmStudio+Release+News+Sunday+11-December-2022","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1583968.metadata":{"lastModifiedDate":"2022-12-12T13:36:07.830Z","createdDate":"2022-12-11T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1583575":{"id":"1583575","title":"gmStudio Release News: Monday, 10-October-2022","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1583575.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1583575.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1583575.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1583575":{"id":"P1583575","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1583575.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1583575","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1583575.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2022\u002F10\u002F10\u002F1583575\u002FgmStudio+Release+News+Monday+10-October-2022","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1583575.metadata":{"lastModifiedDate":"2022-10-14T15:23:15.247Z","createdDate":"2022-10-10T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1583130":{"id":"1583130","title":"gmStudio Release News: Tuesday, 05-July-2022","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1583130.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1583130.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1583130.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1583130":{"id":"P1583130","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1583130.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1583130","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1583130.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2022\u002F07\u002F05\u002F1583130\u002FgmStudio+Release+News+Tuesday+05-July-2022","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1583130.metadata":{"lastModifiedDate":"2022-07-09T11:38:28.813Z","createdDate":"2022-07-05T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1582674":{"id":"1582674","title":"gmStudio Release News: Saturday, 05-March-2022","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1582674.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1582674.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1582674.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1582674":{"id":"P1582674","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1582674.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1582674","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1582674.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2022\u002F03\u002F05\u002F1582674\u002FgmStudio+Release+News+Saturday+05-March-2022","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1582674.metadata":{"lastModifiedDate":"2022-03-05T18:02:48.727Z","createdDate":"2022-03-05T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1582517":{"id":"1582517","title":"VB6\u002FCOM Still declining in popularity","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1582517.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1582517.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1582517.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1582517":{"id":"P1582517","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1582517.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1582517","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1582517.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2022\u002F01\u002F12\u002F1582517\u002FVB6+COM+Still+declining+in+popularity","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1582517.metadata":{"lastModifiedDate":"2022-01-12T17:38:41.720Z","createdDate":"2022-01-12T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1582286":{"id":"1582286","title":"gmStudio Release News: Wednesday, 01-Dec-2021","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1582286.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1582286.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1582286.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1582286":{"id":"P1582286","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1582286.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1582286","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1582286.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2021\u002F12\u002F01\u002F1582286\u002FgmStudio+Release+News+Wednesday+01-Dec-2021","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1582286.metadata":{"lastModifiedDate":"2021-12-01T15:33:54.637Z","createdDate":"2021-12-01T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1581273":{"id":"1581273","title":"gmStudio Release News: Monday, 04-October-2021","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1581273.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1581273.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1581273.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1581273":{"id":"P1581273","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1581273.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1581273","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1581273.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2021\u002F10\u002F04\u002F1581273\u002FgmStudio+Release+News+Monday+04-October-2021","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1581273.metadata":{"lastModifiedDate":"2021-10-04T19:52:31.323Z","createdDate":"2021-10-04T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1580983":{"id":"1580983","title":"gmStudio Release News: Tuesday, 06-July-2021","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1580983.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1580983.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1580983.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1580983":{"id":"P1580983","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1580983.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1580983","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1580983.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2021\u002F07\u002F06\u002F1580983\u002FgmStudio+Release+News+Tuesday+06-July-2021","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1580983.metadata":{"lastModifiedDate":"2021-07-06T22:12:30.837Z","createdDate":"2021-07-06T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1580529":{"id":"1580529","title":"gmStudio Release News: Tuesday, 11-May-2021","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1580529.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1580529.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1580529.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1580529":{"id":"P1580529","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1580529.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1580529","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1580529.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2021\u002F05\u002F11\u002F1580529\u002FgmStudio+Release+News+Tuesday+11-May-2021","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1580529.metadata":{"lastModifiedDate":"2022-03-04T17:52:56.373Z","createdDate":"2021-05-11T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1580480":{"id":"1580480","title":"gmStudio Release News: Tuesday, 23-March-2021","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1580480.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1580480.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1580480.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1580480":{"id":"P1580480","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1580480.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1580480","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1580480.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2021\u002F03\u002F23\u002F1580480\u002FgmStudio+Release+News+Tuesday+23-March-2021","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1580480.metadata":{"lastModifiedDate":"2021-03-24T12:32:09.000Z","createdDate":"2021-03-23T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1580344":{"id":"1580344","title":"gmStudio Release News: Tuesday, 09-February-2021","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1580344.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1580344.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1580344.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1580344":{"id":"P1580344","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1580344.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1580344","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1580344.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2021\u002F02\u002F09\u002F1580344\u002FgmStudio+Release+News+Tuesday+09-February-2021","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1580344.metadata":{"lastModifiedDate":"2021-02-10T15:00:29.053Z","createdDate":"2021-02-09T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1579788":{"id":"1579788","title":"gmStudio Release News: Wednesday, 11-November-2020","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1579788.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1579788.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1579788.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1579788":{"id":"P1579788","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1579788.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1579788","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1579788.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F11\u002F11\u002F1579788\u002FgmStudio+Release+News+Wednesday+11-November-2020","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1579788.metadata":{"lastModifiedDate":"2020-11-11T17:22:55.617Z","createdDate":"2020-11-11T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1579403":{"id":"1579403","title":"gmStudio Release News: Wednesday, 02-September-2020","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1579403.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1579403.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1579403.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1579403":{"id":"P1579403","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1579403.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1579403","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1579403.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F09\u002F02\u002F1579403\u002FgmStudio+Release+News+Wednesday+02-September-2020","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1579403.metadata":{"lastModifiedDate":"2020-09-02T22:14:12.187Z","createdDate":"2020-09-02T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1579292":{"id":"1579292","title":"Great Migrations FAQ Published","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1579292.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1579292.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1579292.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1579292":{"id":"P1579292","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1579292.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1579292","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1579292.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F08\u002F10\u002F1579292\u002FGreat+Migrations+FAQ+Published","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1579292.metadata":{"lastModifiedDate":"2020-08-11T00:09:19.317Z","createdDate":"2020-08-10T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1579144":{"id":"1579144","title":"VB6 Hangs In there! (and hangs around beyond its welcome)","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1579144.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1579144.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1579144.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1579144":{"id":"P1579144","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1579144.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1579144","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1579144.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F07\u002F20\u002F1579144\u002FVB6+Hangs+In+there+and+hangs+around+beyond+its+welcome","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1579144.metadata":{"lastModifiedDate":"2020-07-21T14:44:57.320Z","createdDate":"2020-07-20T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1579135":{"id":"1579135","title":"gmStudio Release News: Monday, 20-July-2020","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1579135.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1579135.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1579135.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1579135":{"id":"P1579135","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1579135.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1579135","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1579135.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F07\u002F19\u002F1579135\u002FgmStudio+Release+News+Monday+20-July-2020","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1579135.metadata":{"lastModifiedDate":"2020-07-20T13:06:49.090Z","createdDate":"2020-07-19T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1578787":{"id":"1578787","title":"gmStudio Release News: Wednesday, 29-April-2020","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1578787.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1578787.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1578787.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1578787":{"id":"P1578787","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1578787.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1578787","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1578787.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F04\u002F29\u002F1578787\u002FgmStudio+Release+News+Wednesday+29-April-2020","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1578787.metadata":{"lastModifiedDate":"2020-04-29T13:40:51.663Z","createdDate":"2020-04-29T04:00:00.000Z","__typename":"ContentMetadata"},"Content:1578448":{"id":"1578448","title":"gmStudio Release News: Thursday, 27-February-2020","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1578448.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1578448.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1578448.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1578448":{"id":"P1578448","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1578448.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1578448","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1578448.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2020\u002F02\u002F26\u002F1578448\u002FgmStudio+Release+News+Thursday+27-February-2020","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1578448.metadata":{"lastModifiedDate":"2020-02-27T18:44:47.597Z","createdDate":"2020-02-26T05:00:00.000Z","__typename":"ContentMetadata"},"Content:1577809":{"id":"1577809","title":"Samples changed to demonstrate different approach for deep migration","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1577809.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1577809.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1577809.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1577809":{"id":"P1577809","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1577809.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577809","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577809.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F12\u002F19\u002F1577809\u002FSamples+changed+to+demonstrate+different+approach+for+deep+migration","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1577809.metadata":{"lastModifiedDate":"2020-01-07T14:46:51.190Z","createdDate":"2019-12-19T13:44:44.997Z","__typename":"ContentMetadata"},"Content:1577820":{"id":"1577820","title":"gmStudio Release News: Thursday, 19-December-2019","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1577820.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1577820.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1577820.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1577820":{"id":"P1577820","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1577820.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577820","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577820.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F12\u002F19\u002F1577820\u002FgmStudio+Release+News+Thursday+19-December-2019","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1577820.metadata":{"lastModifiedDate":"2019-12-19T21:00:38.397Z","createdDate":"2019-12-19T13:21:06.793Z","__typename":"ContentMetadata"},"Content:1577584":{"id":"1577584","title":"gmStudio Release News: Friday, 27-September-2019","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1577584.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1577584.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1577584.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1577584":{"id":"P1577584","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1577584.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577584","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577584.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F09\u002F27\u002F1577584\u002FgmStudio+Release+News+Friday+27-September-2019","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1577584.metadata":{"lastModifiedDate":"2019-09-27T12:49:23.670Z","createdDate":"2019-09-27T12:49:23.663Z","__typename":"ContentMetadata"},"Content:1577249":{"id":"1577249","title":"gmStudio Release News: Tuesday, 30-July-2019","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1577249.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1577249.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1577249.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1577249":{"id":"P1577249","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1577249.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577249","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577249.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F07\u002F30\u002F1577249\u002FgmStudio+Release+News+Tuesday+30-July-2019","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1577249.metadata":{"lastModifiedDate":"2019-07-30T20:24:14.887Z","createdDate":"2019-07-30T20:24:14.883Z","__typename":"ContentMetadata"},"Content:1576713":{"id":"1576713","title":"gmStudio Release News: Monday, 17-June-2019","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1576713.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1576713.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1576713.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1576713":{"id":"P1576713","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1576713.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1576713","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1576713.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F06\u002F17\u002F1576713\u002FgmStudio+Release+News+Monday+17-June-2019","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1576713.metadata":{"lastModifiedDate":"2019-06-18T11:18:26.477Z","createdDate":"2019-06-18T00:42:52.847Z","__typename":"ContentMetadata"},"Content:1576669":{"id":"1576669","title":"gmStudio Release News: Wednesday, 01-May-2019","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1576669.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1576669.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1576669.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1576669":{"id":"P1576669","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1576669.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1576669","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1576669.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F05\u002F01\u002F1576669\u002FgmStudio+Release+News+Wednesday+01-May-2019","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1576669.metadata":{"lastModifiedDate":"2019-05-01T14:48:18.037Z","createdDate":"2019-05-01T14:47:18.917Z","__typename":"ContentMetadata"},"Content:1576624":{"id":"1576624","title":"gmStudio Release News: Wednesday, 20-March-2019","status":"current","blank":false,"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1576624.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"links":{"type":"id","generated":true,"id":"$Content:1576624.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"metadata":{"type":"id","generated":true,"id":"$Content:1576624.metadata","typename":"ContentMetadata"},"__typename":"Content"},"JsonContentProperty:P1576624":{"id":"P1576624","key":"editor","value":"\"v2\"","__typename":"JsonContentProperty"},"$Content:1576624.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1576624","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1576624.links":{"webui":"\u002Fspaces\u002FGMG\u002Fblog\u002F2019\u002F03\u002F20\u002F1576624\u002FgmStudio+Release+News+Wednesday+20-March-2019","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1576624.metadata":{"lastModifiedDate":"2019-03-20T13:56:45.383Z","createdDate":"2019-03-20T13:56:45.380Z","__typename":"ContentMetadata"},"$ROOT_QUERY.content({\"id\":\"1577454\",\"status\":[\"draft\",\"current\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Content:1577454.properties({\"keys\":[\"cover-picture-id-published\",\"editor\",\"import-source\",\"imported-page-modified-date\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1577454","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1577454.body.dynamic":{"representation":"atlas_doc_format","value":"{\"type\":\"doc\",\"content\":[{\"type\":\"layoutSection\",\"marks\":[{\"type\":\"breakout\",\"attrs\":{\"mode\":\"wide\",\"width\":1800}}],\"content\":[{\"type\":\"layoutColumn\",\"attrs\":{\"width\":66.66},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Overview\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This page describes how and why Interface Description files are created during the preparation process. \",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Interface Description Files\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When gmStudio translates your source code, it uses information about all the COM components referenced by your system. These COM components provide detailed information about the interfaces and types they contain and gmStudio uses this information to interpret your code and improve the quality of translations.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Rather than finding, loading, and inspecting external COM components every time it performs a translation, gmStudio uses a cache of pre-built interface description files (\",\"type\":\"text\"},{\"text\":\"IDFs\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"). The IDF cache is typically built at the beginning of your migration project from the COM components referenced by your codebase and registered on the migration machine. By default the IDF cache is located in the workspace\\\\idf folder.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"gmStudio creates IDFs for your migration project when you select [Tools\u002FAuthor Interface Descriptions] from the menu. This operation is included in the default batch process for all new migrations.\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Types of IDFs\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"COM dependencies can be classified as being either local, external, or custom:\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"A \",\"type\":\"text\"},{\"text\":\"Local component (\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"aka, \",\"type\":\"text\"},{\"text\":\"In-House Component, IHC) \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"is based on a migration unit that is part of the migration project.\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Local components are defined by their source code.\",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"IDFs for local COM components are generated from the source code of those components and saved to the local IDF cache folder (idf\\\\FromCode).\",\"type\":\"text\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" \",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"An \",\"type\":\"text\"},{\"text\":\"External component (aka, Third-Party Component, 3PC) \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"is based on a reference to a COM type library file (TLB, DLL, OCX, etc.) that is external to the migration project.\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"External components are binary files (pre-compiled from source code that is external to the Migration Project). In many cases, they are provided only as binary from a third party.\",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"IDFs for external COM components are generated from the COM typelib files and saved to the system IDF cache folder (idf\\\\FromIDL).\",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"In order to create IDFs for an external component, the component must be properly registered and ready to load.\",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Many applications use a mix of .NET and VB6\u002FASP. Specifically, the VB6\u002FASP code references .NET classes in .NET assemblies. This is known as \",\"type\":\"text\"},{\"text\":\"COM interop\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\". To do this, the .NET assembly must be referenced through a second file called a COM Callable Wrapper (CCW). A CCW is a COM type library (a .tlb file) created using visual studio or the \",\"type\":\"text\"},{\"text\":\"tlbexp\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" tool that is part of the .NET SDK. If your application is calling .NET through a CCW, you will have to generate an IDF from the CCW .tlb file. \",\"type\":\"text\"},{\"type\":\"hardBreak\"}]},{\"type\":\"extension\",\"attrs\":{\"extensionType\":\"com.atlassian.confluence.migration\",\"extensionKey\":\"legacy-content\",\"text\":\"\",\"parameters\":{\"reason\":\"An info macro in a list item can't be created or edited in the new editor.\",\"cxhtml\":\"\u003Cac:structured-macro ac:name=\\\"info\\\" ac:schema-version=\\\"1\\\" ac:macro-id=\\\"13480ee9-6d6d-4a88-87c2-196a1715c5f0\\\"\u003E\u003Cac:rich-text-body\u003E\u003Cp\u003EWhen using COM Callable Wrapper assemblies, you may find the IDFs have no members in the corresponding IDF file. This is a serious deficiency that prevents gmBasic from recognizing object.member references and results in CallByNames and partially migrated code. In order to get the CCW classes to contain members you should apply the AutoDual attribute to those classes and rebuild the assemblies. For example:\u003C\u002Fp\u003E\u003Cac:structured-macro ac:name=\\\"code\\\" ac:schema-version=\\\"1\\\" ac:macro-id=\\\"6c8a8662-644d-4926-bd3e-4b569dad3f51\\\"\u003E\u003Cac:plain-text-body\u003E\u003C![CDATA[[ClassInterface(ClassInterfaceType.AutoDual)] \\npublic class Mammal \\n{ \\n public void Eat(); \\n public void Breathe(): \\n public void Sleep(); \\n}]]\u003E\u003C\u002Fac:plain-text-body\u003E\u003C\u002Fac:structured-macro\u003E\u003Cp\u003ESee more here: \u003Ca href=\\\"https:\u002F\u002Fdocs.microsoft.com\u002Fen-us\u002Fdotnet\u002Fframework\u002Finterop\u002Fcom-callable-wrapper\\\"\u003Ehttps:\u002F\u002Fdocs.microsoft.com\u002Fen-us\u002Fdotnet\u002Fframework\u002Finterop\u002Fcom-callable-wrapper\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003C\u002Fac:rich-text-body\u003E\u003C\u002Fac:structured-macro\u003E\",\"nestedContent\":{\"type\":\"doc\",\"content\":[{\"type\":\"panel\",\"attrs\":{\"panelType\":\"info\"},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"When using COM Callable Wrapper assemblies, you may find the IDFs have no members in the corresponding IDF file. This is a serious deficiency that prevents gmBasic from recognizing object.member references and results in CallByNames and partially migrated code. In order to get the CCW classes to contain members you should apply the AutoDual attribute to those classes and rebuild the assemblies. For example:\",\"type\":\"text\"}]},{\"type\":\"codeBlock\",\"content\":[{\"text\":\"[ClassInterface(ClassInterfaceType.AutoDual)] \\npublic class Mammal \\n{ \\n public void Eat(); \\n public void Breathe(): \\n public void Sleep(); \\n}\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"See more here: \",\"type\":\"text\"},{\"text\":\"https:\u002F\u002Fdocs.microsoft.com\u002Fen-us\u002Fdotnet\u002Fframework\u002Finterop\u002Fcom-callable-wrapper\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"https:\u002F\u002Fdocs.microsoft.com\u002Fen-us\u002Fdotnet\u002Fframework\u002Finterop\u002Fcom-callable-wrapper\"}}]}]}]}],\"version\":1}}}}]}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Custom\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" IDFs is an IDF that you create by hand, typically by modifying a generated IDF.\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Custom IDFs are typically placed in the user folder so they will take precedence over like-named IDFs generated by the tool.\",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Custom IDFs may also be explicitly assigned to load instead of a generated IDF; for example by using the Registry-libname command.\",\"type\":\"text\"}]}]}]}]}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Validating your IDFs\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If you are working on a machine where the COM components referenced by your migration are properly registered, then creating and using IDFs should be a completely automatic process. However, if the automatic process fails, you can identify the missing IDFs and create them manually.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The \",\"type\":\"text\"},{\"text\":\"Dependency Status \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"field for each migration task indicates the overall status of the IDFs it requires:\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Dependency Status=READY\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" means all the IDFs required for the migration unit are found in the IDF cache.\",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Dependency Status=~IDF\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" means at least one IDF required for the migration unit could not be found in the IDF cache.\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\" \",\"type\":\"text\"}]}]}]},{\"type\":\"panel\",\"attrs\":{\"panelType\":\"info\"},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"The meaning of \",\"type\":\"text\"},{\"text\":\"Dependency Status\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"=READY is controlled by the RefStatFlags setting in the application config file.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"RefStatFlags = \\\"IDF\\\"; require IDF only.\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"RefStatFlags = \\\"ASM\\\"; require Interop only.\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"RefStatFlags = \\\"IDF+ASM\\\"; require both IDF and Interop\",\"type\":\"text\"}]}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Quality of IDFs\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Note that the quality of an IDF will depend on if the corresponding COM component and its COM dependencies are \",\"type\":\"text\"},{\"text\":\"properly installed and registered\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" on the machine where the IDFs are generated. If the COM component and its COM dependencies are not properly registered, the IDF will be more weakly typed: using Variants, VB_USERDEFINED, and missing coclass\u002Fsubclass information. These weakly typed IDFs can hinder gmStudio's ability to recognize and interpret symbols defined using types from the COM API and this will reduce the quality of the generated code. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"In addition, some COM APIs are intentionally weakly typed. For example, collection properties or properties for other complex types might simply return type variant or type object. This reduces code quality and can result in extensive use of CallByName and dynamic cast. It also reduces the ability of the tool to apply upgrade transformations. When you see this, you can typically improve things by creating a custom COM description file that have variants and objects replaced with the appropriate stronger types. See \",\"type\":\"text\"},{\"text\":\"this article\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"__confluenceMetadata\":{\"isRenamedTitle\":true,\"postingDay\":\"2014\u002F09\u002F29\",\"linkType\":\"blogpost\",\"contentTitle\":\"Dealing with Variants in COM\",\"versionAtSave\":\"4\"},\"href\":\"https:\u002F\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fspaces\u002FGMG\u002Fblog\u002F2014\u002F09\u002F29\u002F1588429\"}}]},{\"text\":\" for an example.\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Using The References Panel\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The RefStat field in the task list will tell you if you are missing an IDF needed by one of your migration tasks, but it cannot tell you which IDF is missing. In order to see that, you have to look at the References panel.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The references panel provides detailed information about all the components referenced by each migration unit. One piece of this information is the RefStat field:\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Dependency Status\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"=READY means the component's IDF file is in the IDF cache. \",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Dependency Status\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"=NOTFOUND means the component's IDF is not found in the IDF cache.\",\"type\":\"text\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Click [Rebuild Interface Description] from the reference context menu to rebuild an IDF.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Click [Edit Interface Description] from the reference context menu to edit an IDF.\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":3},\"content\":[{\"text\":\"IDF Reports and Logs\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The \",\"type\":\"text\"},{\"text\":\"Source References \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"Report can provide a high-level survey of all COM dependencies for your entire migration project. Essentially this report is the consolidated References Panel data for a selected set of migration units.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"There are also two reports that tabulate the contents of the IDF cache:\",\"type\":\"text\"}]},{\"type\":\"bulletList\",\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interface File Headers Report \",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Interface File ProgIDs Report\",\"type\":\"text\"}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"When gmStudio creates an IDF file, it saves a log file in the workspace\\\\log folder. The name of the file is derived from the COM filename with the extension \",\"type\":\"text\"},{\"text\":\".tli.log.\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" \",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Generating IDFs Manually\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Typically, you will let the COM references in your migration units drive the creation of IDFs; however, if you want to create IDFs for an arbitrary set of COM components, you can do so by performing the following steps:\",\"type\":\"text\"}]},{\"type\":\"orderedList\",\"attrs\":{\"order\":1},\"content\":[{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Click [Tools\\\\Author Interface Description(s) from files...] from the menu. An open file dialog will be displayed. \",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Select COM binary file(s). You may also select *.idl files already generated by gmStudio, or a *.lst file containing a list of COM (or IDL) files \",\"type\":\"text\"}]}]},{\"type\":\"listItem\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Click Open. An IDF for the selected COM component will be created.\",\"type\":\"text\"}]}]}]},{\"type\":\"panel\",\"attrs\":{\"panelType\":\"success\"},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"When generating IDF files, gmStudio will attempt to locate the COM files for each reference based on your registry and the file location hint in the reference statement in your VBP. If that fails, it will look for the file in the folder(s) specified in COM Search Folders specified for your project. This is a semicolon-delimited list of folder paths that may be searched for the COM binary files.\",\"type\":\"text\"}]},{\"type\":\"mediaSingle\",\"attrs\":{\"layout\":\"align-start\",\"width\":487,\"widthType\":\"pixel\"},\"content\":[{\"type\":\"media\",\"attrs\":{\"__fileSize\":20993,\"__fileMimeType\":\"image\u002Fpng\",\"width\":1001,\"id\":\"accb419d-471c-4e46-8a43-6e2bc49e68e1\",\"collection\":\"contentId-1577454\",\"type\":\"file\",\"__fileName\":\"image2023-6-14_14-18-41.png\",\"height\":513}}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"This value is stored in the gmProj file\u002Fs TlbSearchPath element.\",\"type\":\"text\"}]}]},{\"type\":\"paragraph\"},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"COM Selection Variations\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If you wish to process a group of COM components in batch, create a text file that has the full path to a COM component on each line and save as \",\"type\":\"text\"},{\"text\":\"typelibs.lst\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"; then select the typelibs.lst file in step 2 above.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If you have a group of IDL files created by gmStudio, you can select them instead of a COM file in step 2 above.\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Dealing with COM module references\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"There are a handful of COM types that are referenced using a little-known sub-module notation (file.dll\\\\#) where # is the number of a module within the type library. For example, if your VB6 program uses the Regular Expression classes in VBScript.dll you will find a reference in your VBP like the following:\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Reference=*\\\\G{...}#5.5#0#..\\\\..\\\\..\\\\WINDOWS\\\\system32\\\\vbscript.dll\\\\3#Microsoft VBScript Regular Expressions 5.5\\n\",\"type\":\"text\",\"marks\":[{\"type\":\"code\"}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"gmStudio handles this by creating IDFs of the form file_#.dll, in this case vbscript_3.dll.xml.\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"If you need to process one of these submodules manually, enter the (file.dll\\\\#) path manually in step 2.\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Dealing with Non-standard ProgIds\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"COM classes can be identified by a ProgId value of the form Library.Class. Normally, the value of Library and Class correspond directly to symbols stored in the COM binary. However, sometimes non-standard identifiers are used for \\\"branding\\\" purposes. These branded ProgIDs do not correspond directly to the ProgIDs found in the type libraries. In order to deal with this, the gmStudio configuration has a file called \",\"type\":\"text\"},{\"text\":\"registry.xml \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"that provides a cross reference for non-standard ProgIds and actual ProgIds. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Typically you will add registry commands like this to your translation script.\",\"type\":\"text\"}]},{\"type\":\"codeBlock\",\"content\":[{\"text\":\"\u003C!--\\nThese registry commands help the translator resolve\\nnon-standard ProgIds used by various third party components.\\n\\nsource = the ProgId that appears in code\\ntarget = the LibName.ClassName that appears in the IDL\u002FIDF\\n--\u003E\\n\\n\u003Cregistry type=\\\"ProgId\\\" source=\\\"APToolkit.Object\\\" target=\\\"APToolkitLib.APToolKit\\\" \u002F\u003E\\n\u003Cregistry type=\\\"ProgId\\\" source=\\\"AddressObject.AddressCheck\\\" target=\\\"AddressObjectLib.AddressCheck\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"AddressObject.Parse\\\" target=\\\"AddressObjectLib.Parse\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"AddressObject.ZipCodeData\\\" target=\\\"AddressObjectLib.ZipCodeData\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"DERuntime.DERuntime\\\" target=\\\"DERuntimeObjects.DataEnvironment\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"IXSSO.Query\\\" target=\\\"Cisso.CissoQuery\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"MSWC.BrowserType\\\" target=\\\"BrowserType.BrowserCap\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"MSWC.Counters\\\" target=\\\"Counters.Counters\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"MSXML.DOMDocument\\\" target=\\\"MSXML2.DOMDocument\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"Microsoft.XMLDOM\\\" target=\\\"MSXML2.DOMDocument\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"Microsoft.XMLHTTP\\\" target=\\\"MSXML2.XMLHTTP\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"Msxml2.DOMDocument.4.0\\\" target=\\\"MSXML2.DomDocument\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"Msxml2.ServerXMLHTTP.4.0\\\" target=\\\"MSXML2.ServerXMLHTTP\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"Persits.MailSender\\\" target=\\\"ASPEMAILLib.MailSender\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"SAWZip.Archive.1\\\" target=\\\"SAWZIPLib.Archive\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"SoftArtisans.ExcelWriter\\\" target=\\\"SAEXCELLib.SAExcelApplication\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"SoftArtisans.FileUp\\\" target=\\\"UPLDICTIONARYLib.ISAFile\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"WScript.Network\\\" target=\\\"IWshRuntimeLibrary.WshNetwork\\\" \u002F\u003E\\n\u003Cregistry type=\\\"progid\\\" source=\\\"WScript.Shell\\\" target=\\\"IWshRuntimeLibrary.WshShell\\\" \u002F\u003E\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Multiple DLL Versions\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Large VB6 and ASP applications sometimes reference multiple versions of the same COM API. For example, there are several versions of the MSXML2 API in circulation – msxml2.dll, msxml3.dll, msxml4.dll, and msxml6.dll. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The registry-libname command in a Translation Configuration File allows multiple versions of a given DLL file to target a single standard as part of the migration process. For example, the following two commands tell gmBasic that references to msxml4.dll and msxml6.dll should be processed as if they were references to GM.msxml6.dll. This means that only the custom msxml6 IDF will be the only used in the upgrade process. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"The following registry-libname directives can be used to standardize on multiple COM components on a single IDF:\",\"type\":\"text\"}]},{\"type\":\"codeBlock\",\"content\":[{\"text\":\" \u003CRegistry type=\\\"libname\\\" source=\\\"msxml4.dll\\\" target=\\\"GM.msxml6.dll\\\" \u002F\u003E\\n \u003CRegistry type=\\\"libname\\\" source=\\\"msxml6.dll\\\" target=\\\"GM.msxml6.dll\\\" \u002F\u003E\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Retaining type short for COM interop\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"COM IDFs sometimes declare API elements as having type short. However, most .NET APIs are favor type int (i.e., Int32). You will generally use an integer in a .NET API where you used a short in a COM API. Consequently, the default IDF files prepared by gmBasic will Integer instead of Short. \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"However, if you are planning to use interop as the replacement for a COM dependency, you will need to retain type Short in your IDF. Retaining a short in an IDF is done by passing \",\"type\":\"text\"},{\"text\":\"TypeInteger=short\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" on the command line when you generate the IDFs for those particular COM files. The IDF generation process is mostly automated, but you can find the command line string for generating an IDF in the gmStudio application settings, gmStudio.cfg, file. It is the variable IdlToXmlCmd:\",\"type\":\"text\"}]},{\"type\":\"codeBlock\",\"content\":[{\"text\":\"Default (short in the IDL to an Integer in the IDF)\\nIdlToXmlCmd = \\\"cmd.exe \u002FC pushd '%IdfFromIdlFolder%' && '%TranToolExe%' '%SrcIdlPath%' \u003E\u003E '%LogPath%' ...\\n\\nModified (short in the IDL to an Short in the IDF)\\nIdlToXmlCmd = \\\"cmd.exe \u002FC pushd '%IdfFromIdlFolder%' && '%TranToolExe%' '%SrcIdlPath%' TypeInteger=short \u003E\u003E '%LogPath%' ...\",\"type\":\"text\"}]},{\"type\":\"heading\",\"attrs\":{\"level\":2},\"content\":[{\"text\":\"Hand-Coded IDF\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"Sometimes you may not have the binary files for a COM component and cannot generate its IDF. In this situation, you may generate a starter IDF and add the API elements you need by hand. You may create a starter document for a \\\"NOT FOUND\\\" IDF by selecting Edit IDF item from the References context menu. This is normally just a short term fix, to allow you to move forward with work until you obtain a copy of the COM binary and use it to generate a full and accurate IDF.\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#172b4d\"}}]}]}]},{\"type\":\"layoutColumn\",\"attrs\":{\"width\":33.33},\"content\":[{\"type\":\"bodiedExtension\",\"attrs\":{\"layout\":\"default\",\"extensionType\":\"com.atlassian.confluence.macro.core\",\"extensionKey\":\"panel\",\"parameters\":{\"macroParams\":{\"bgColor\":{\"value\":\"CCFFFF\"},\"_parentId\":{\"value\":\"1577454\"},\"title\":{\"value\":\"Table of Contents\"}},\"macroMetadata\":{\"macroId\":{\"value\":\"82cfbfa0-1857-4598-a295-7b3e71d111c8\"},\"schemaVersion\":{\"value\":\"1\"},\"title\":\"Panel\"}},\"localId\":\"c36f03b7-74ea-4866-8bc0-713360e56b4e\"},\"content\":[{\"type\":\"extension\",\"attrs\":{\"layout\":\"default\",\"extensionType\":\"com.atlassian.confluence.macro.core\",\"extensionKey\":\"toc\",\"parameters\":{\"macroParams\":{\"_parentId\":{\"value\":\"1577454\"}},\"macroMetadata\":{\"macroId\":{\"value\":\"ae2ee7af-170d-4677-8c5d-e60885ab3c20\"},\"schemaVersion\":{\"value\":\"1\"},\"title\":\"Table of Contents\"}},\"localId\":\"b5a790ed-895e-499e-b1fd-195a999b2946\"}}]}]}]}],\"version\":1}","content":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic.content","typename":"Content"},"webresource":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic.webresource","typename":"WebResourceDependencies"},"__typename":"ContentBody"},"$Content:1577454.body.dynamic.content.version":{"number":28,"__typename":"Version"},"$Content:1577454.body.dynamic.content":{"version":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic.content.version","typename":"Version"},"__typename":"Content"},"$Content:1577454.body.dynamic.webresource.superbatch.tags":{"js":"\u003Cscript nonce=\"aa283e8f789345b991da3b3ea00e78cb\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fcc-fe-bifrost.prod-east.frontend.public.atl-paas.net\u002Fassets\u002Fmaster\u002Fvendors\u002F3.6.1-conf-custom-m04.js\" data-wrm-external data-wrm-key=\"com.atlassian.plugins.jquery:jquery\" data-wrm-batch-type=\"resource\" data-initially-rendered\u003E\u003C\u002Fscript\u003E\n\u003Cscript nonce=\"aa283e8f789345b991da3b3ea00e78cb\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fcc-fe-bifrost.prod-east.frontend.public.atl-paas.net\u002Fassets\u002Fmaster\u002Fvendors\u002F3.4.0-migrate-conf-custom-03.js\" data-wrm-external data-wrm-key=\"com.atlassian.plugins.jquery:jquery\" data-wrm-batch-type=\"resource\" data-initially-rendered\u003E\u003C\u002Fscript\u003E\n\u003Cscript nonce=\"aa283e8f789345b991da3b3ea00e78cb\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fd2mgsob4fppcrd.cloudfront.net\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F-629736684\u002Fh\u002Ff4eb17c447724596d16b753593a128891378bfe8500a4124031862de00012dd8\u002F_\u002Fdownload\u002Fcontextbatch\u002Fjs\u002F_super\u002Fbatch.js?assetVersion=1000.0.0-95b70ecb409d19827&externals=__local-default__&locale=en-GB\" data-wrm-key=\"_super\" data-wrm-batch-type=\"context\" data-initially-rendered\u003E\u003C\u002Fscript\u003E\n","css":"\u003Clink type=\"text\u002Fcss\" rel=\"stylesheet\" nonce=\"aa283e8f789345b991da3b3ea00e78cb\" href=\"\u002F\u002Fd2mgsob4fppcrd.cloudfront.net\u002Fgreatmigrations.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F-629736684\u002Fh\u002F4717b5ea9dcf07eebf6ecaed970652e143dc6d6d5b277396f008f20eb2d146ff\u002F_\u002Fdownload\u002Fcontextbatch\u002Fcss\u002F_super\u002Fbatch.css?assetVersion=1000.0.0-95b70ecb409d19827&externals=__local-default__&relative-url=true\" data-wrm-key=\"_super\" data-wrm-batch-type=\"context\" media=\"all\"\u003E\n","__typename":"WebResourceTags"},"$Content:1577454.body.dynamic.webresource.superbatch":{"tags":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic.webresource.superbatch.tags","typename":"WebResourceTags"},"__typename":"SuperBatchWebResources"},"$Content:1577454.body.dynamic.webresource":{"superbatch":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic.webresource.superbatch","typename":"SuperBatchWebResources"},"tags":{"type":"id","generated":true,"id":"$Content:1577454.body.dynamic.webresource.tags","typename":"WebResourceTags"},"__typename":"WebResourceDependencies"},"$Content:1577454.body.dynamic.webresource.tags":{"js":"","css":"","__typename":"WebResourceTags"},"$Content:1577454.labels({\"orderBy\":{\"direction\":\"ASCENDING\",\"sortField\":\"LABELLING_CREATIONDATE\"}})":{"count":0,"nodes":[],"__typename":"PaginatedLabelList"},"$ROOT_QUERY.content({\"id\":\"1577454\",\"version\":null})":{"nodes":[{"type":"id","generated":false,"id":"Content:1577454","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Space:1572867.lookAndFeel.content.screen":{"background":"var(--ds-surface, #FFFFFF)","backgroundColor":"var(--ds-surface, #FFFFFF)","backgroundImage":"none","backgroundPosition":null,"backgroundSize":"auto","backgroundRepeat":null,"backgroundOrigin":null,"backgroundClip":null,"backgroundAttachment":null,"backgroundBlendMode":null,"layer":null,"gutterTop":"default","gutterRight":"default","gutterBottom":"default","gutterLeft":"default","__typename":"ScreenLookAndFeel"},"$Space:1572867.lookAndFeel.content.container":{"background":"var(--ds-surface, #FFFFFF)","backgroundColor":"var(--ds-surface, #FFFFFF)","backgroundImage":"none","backgroundPosition":null,"backgroundSize":"auto","backgroundRepeat":null,"backgroundOrigin":null,"backgroundClip":null,"backgroundAttachment":null,"backgroundBlendMode":null,"padding":"0","borderRadius":"0","__typename":"ContainerLookAndFeel"}};window.__APOLLO_AGG_STATE__={"ROOT_QUERY":{"knowledgeDiscovery":null,"confluence_forgeExtensionsByType({\"cloudId\":\"af8a0353-4012-458b-85c4-350b5244d75c\",\"context\":{\"spaceKey\":\"GMG\"},\"includeHidden\":false,\"locale\":\"en-US\",\"types\":[\"confluence:spacePage\"]})":[],"confluence_forgeExtensionsByType({\"cloudId\":\"af8a0353-4012-458b-85c4-350b5244d75c\",\"context\":{\"contentId\":\"1577454\",\"spaceKey\":\"GMG\"},\"includeHidden\":false,\"locale\":\"en-US\",\"types\":[\"xen:macro\"]})":[]}};window.__SITEINFORMATION__={"tenant":{"shard":"confluence-prod-us-14-2.prod.atl-paas.net","cloudId":"af8a0353-4012-458b-85c4-350b5244d75c","environment":"PRODUCTION","activationId":"485361fb-1895-47e6-a938-5126508c3bbf","__typename":"Tenant"},"organization":{"orgId":"jd6j2080-1234-186k-68a1-082k8411b58a","__typename":"Organization"},"userForAnalytics":null,"user":null,"getAIConfig":{"isEnabled":false,"isRovoEnabled":false,"isRovoLLMEnabled":false,"__typename":"AIConfigResponse"},"confluence_tenantContext":{"licenseStates":{"confluence":{"ccpEntitlementId":"b5cb7ae2-6b63-3358-b685-1f6db49db845","__typename":"LicenseState"},"__typename":"LicenseStates"},"timeZone":"America\u002FNew_York","editions":{"confluence":"PREMIUM","__typename":"Editions"},"monolithRegion":"prod-east","__typename":"ConfluenceTenantContext"},"isSiteAdmin":false,"abTestCohorts":"{\"spaceDefaultContentRevamp\":\"20-25\"}","experimentFeatures":"{\"confluence_backend_fabric_editor_for_all_pages\":\"false\",\"confluence_live_pages_beta\":\"beta-default-on\",\"confluence_notes\":\"DISABLED\",\"confluence_content_wrapper_beta\":\"null\",\"confluence_modernize\":\"exp-test\",\"confluence_aifc\":\"exp-control\"}","userCanCreateContent":false,"isNewUser":false,"siteSettings":{"homepage":{"uri":"\u002Fspaces\u002FGMG\u002Foverview","title":"Great Migrations Documentation Home","__typename":"Homepage"},"siteTitle":"Great Migrations","showApplicationTitle":false,"frontCover":{"frontCoverState":"hidden","__typename":"FrontCover"},"companyHubName":"Company hub","__typename":"SiteSettings"},"siteDescription":{"logoUrl":"\u002Fwiki\u002Fdownload\u002Fattachments\u002F32971\u002Fatl.site.logo?version=1&modificationDate=1704854645569&cacheVersion=1&api=v2","__typename":"SiteDescription"},"currentConfluenceUser":{"isAnonymous":true,"__typename":"CurrentConfluenceUser"}};window.__SSR_LOCALE__="en-US";window.__REMOTE_LOCAL_STORAGE__={};window.__SSR_BUILD__="CLASSIC-master-9848856";window.__SSR_MEASURES__={"ssr-app\u002Fprepare\u002FinitializeCookie":{"startTime":186,"duration":18},"ssr-app\u002Fprepare":{"startTime":186,"duration":298},"ssr-app\u002Fprepare\u002FgetSessionData":{"startTime":186,"duration":106},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SiteInformationQuery":{"startTime":186,"duration":106},"ssr-app\u002Fprepare\u002FinitializeStatsigClient":{"startTime":189,"duration":42},"ssr-app\u002Fprepare\u002FinitializeStorageManager":{"startTime":198,"duration":14},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:LocalStorageQuery":{"startTime":199,"duration":5},"ssr-app\u002Fprepare\u002FloadTranslation":{"startTime":199,"duration":4},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FsyncBlock":{"startTime":204,"duration":8},"ssr-app\u002Fprepare\u002FpreloadQuery":{"startTime":232,"duration":252},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useRegisterAdminAnnouncementBannerQuery":{"startTime":235,"duration":54},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ThemeQuery":{"startTime":235,"duration":54},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:GetLicensedProductsQuery":{"startTime":235,"duration":54},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:TopNavigationQuery":{"startTime":239,"duration":57},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:AppNavigationUnifiedQuery":{"startTime":239,"duration":57},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebItemLocationQuery_system.header_left":{"startTime":239,"duration":57},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:EditorPreferencesQuery":{"startTime":239,"duration":57},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentTypesHeaderQuery":{"startTime":242,"duration":187},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SpaceRestrictionCheckQuery":{"startTime":246,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PageRestrictionsQuery":{"startTime":246,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebItemLocationQuery_page.metadata.banner":{"startTime":246,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentHeaderUnifiedQuery":{"startTime":246,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FslowQueryGuard:preloadContentAnalyticsViewers":{"startTime":247,"duration":182},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:RendererContentStateQuery":{"startTime":249,"duration":178},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:EditContentButtonQuery":{"startTime":249,"duration":178},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentAnalyticsViewersUnifiedQuery":{"startTime":249,"duration":178},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ReadTimeQuery":{"startTime":249,"duration":178},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:usePreloadCommentButtonQuery":{"startTime":251,"duration":140},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebItemLocationQuery_system.content.button":{"startTime":251,"duration":140},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useContentClassificationContentDataClassificationQuery":{"startTime":251,"duration":140},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useFabricEligibilityMigrationQuery":{"startTime":251,"duration":140},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FguardException:Macros":{"startTime":252,"duration":181},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FslowQueryGuard:MacrosQuery_preload":{"startTime":252,"duration":181},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:MacrosQuery":{"startTime":252,"duration":178},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FguardException:Content":{"startTime":253,"duration":231},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentUnifiedQuery":{"startTime":254,"duration":225},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useTitleContentPropertiesForPublishedPageQuery":{"startTime":255,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ArchivedPageBannerV2ArchivedPageBannerContainerQuery":{"startTime":255,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PreloadPageStatusQuery":{"startTime":255,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PreloadLegacyBridgeQuery":{"startTime":255,"duration":184},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:preloadContentSmartLinksQuery":{"startTime":257,"duration":153},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ViewSpaceExternalCollaboratorsDialogQuery":{"startTime":257,"duration":153},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SpaceShortcutsSpaceNavigationQuery":{"startTime":257,"duration":153},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SpaceNavigationQuery":{"startTime":257,"duration":153},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ForgeExtensionList":{"startTime":258,"duration":61},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:agg_FetchPreFilteredForgeAppsQuery":{"startTime":259,"duration":60},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SpaceViewsSpaceRootQuery":{"startTime":262,"duration":179},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PageTreeQuery":{"startTime":262,"duration":179},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:FooterCreateButtonsQuery":{"startTime":262,"duration":179},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:BlogTreeRootComponentQuery":{"startTime":262,"duration":179},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FslowQueryGuard:preloadEndOfPageRecommendation":{"startTime":263,"duration":101},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:EndOfPageRecommendationQuery":{"startTime":264,"duration":99},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useSpaceDetailQuery":{"startTime":265,"duration":171},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebPanelLocationQuery_atl.page.content.footer.actions":{"startTime":265,"duration":171},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ReactionsContentQuery":{"startTime":265,"duration":171},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:MediaDownloadTokenQuery":{"startTime":265,"duration":171},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebPanelLocationQuery_atl.general":{"startTime":266,"duration":87},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebPanelLocationQuery_atl.footer":{"startTime":266,"duration":122},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:agg_PlatformHighlightKeywordsQuery":{"startTime":268,"duration":14},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:CustomHeaderFooterQuery":{"startTime":269,"duration":118},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:DSPIsActionEnabledForContentQuery":{"startTime":269,"duration":118},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PresenceSettingsQuery":{"startTime":269,"duration":118},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ActiveCommentsQuery":{"startTime":269,"duration":118},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PermissionCheckAddCommentQuery":{"startTime":270,"duration":194},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PersistentInviteEligibleQuery":{"startTime":271,"duration":94},"ssr-app\u002Frender":{"startTime":484,"duration":377},"ssr-app\u002Frender\u002Fapp-navigation":{"startTime":507,"duration":23},"ssr-app\u002Frender\u002Fglobal-navigation":{"startTime":532,"duration":8},"ssr-app\u002Frender\u002Fspace-navigation":{"startTime":540,"duration":92},"ssr-app\u002Frender\u002Fpage-tree":{"startTime":555,"duration":73},"ssr-app\u002Frender\u002Fview-page-container":{"startTime":662,"duration":185},"ssr-app\u002Frender\u002Fcp-web-fragment":{"startTime":669,"duration":0},"ssr-app\u002Frender\u002Fobject-header":{"startTime":670,"duration":19},"ssr-app\u002Frender\u002Fcontent-title":{"startTime":691,"duration":6},"ssr-app\u002Frender\u002Fbyline":{"startTime":698,"duration":19},"ssr-app\u002Frender\u002Fread-time":{"startTime":705,"duration":6},"ssr-app\u002Frender\u002Fcontent-renderer":{"startTime":724,"duration":87},"ssr-app\u002Frender\u002Ffabric-comments-highlights":{"startTime":726,"duration":0},"ssr-app\u002Frender\u002Fobject-sidebar-control":{"startTime":814,"duration":15},"ssr-app\u002FgenerateResult":{"startTime":861,"duration":11},"ssr-app\u002FgenerateResult\u002FreplacePlaceholderMarkers":{"startTime":861,"duration":8},"server\u002Fmiddlewares\u002Fcreate-context":{"startTime":0,"duration":0},"server\u002Fmiddlewares\u002Frender-context":{"startTime":0,"duration":4},"server\u002Fmiddlewares\u002Fno-ssr":{"startTime":4,"duration":1},"server\u002Fmiddlewares\u002Fcreate-ssr-context":{"startTime":5,"duration":0},"server\u002Fmiddlewares\u002Flive-page":{"startTime":5,"duration":55},"server\u002Fmiddlewares\u002Fauth":{"startTime":5,"duration":23},"server\u002Fmonolith-request":{"startTime":7,"duration":53},"server\u002Fmonolith-request\u002Ffetch":{"startTime":7,"duration":53},"server\u002Fmiddlewares\u002Fauth\u002FgetJanusVersion":{"startTime":6,"duration":1},"server\u002Fmiddlewares\u002Fauth\u002FfetchMonolith":{"startTime":7,"duration":21},"server\u002Fmiddlewares\u002Flegacy-superbatch":{"startTime":29,"duration":0},"server\u002Fhtml-flush\u002Fhigh-priority-code-check":{"startTime":0,"duration":29},"server\u002Fhtml-flush\u002Fpreload-scripts":{"startTime":0,"duration":62},"server\u002Fhtml-flush\u002Fwait-monolith-response":{"startTime":63,"duration":2},"server\u002Fhtml-flush\u002Fwait-render-context":{"startTime":65,"duration":62},"server\u002Ftesseract-request\u002FgetRenderContext":{"startTime":139,"duration":0},"server\u002Ftesseract-request\u002Fstream":{"startTime":139,"duration":749},"server\u002Ftesseract-request\u002FgenHeader":{"startTime":139,"duration":2},"server\u002Fhtml-flush\u002Fwait-tesseract-stream":{"startTime":888,"duration":0}};window.__SSR_LONG_POLE_QUERY__={"query":"ContentUnifiedQuery","duration":225};window.__FETCH_COUNT__=21;window.__SSR_OPERATIONS_COUNT__=51;window.__DELAY_COLLECT_SSR_PLACEHOLDERS__=false;window.__DOCUMENT_TITLE_TAG__="Author Interface Description Files - gmStudio Documentation - Great Migrations";window.__SSR_QUERY_TIMEOUTS__={"prepareGuardTimeouts":{},"bestEffortTimeouts":{},"criticalTimeouts":false};window.__SSR_NONCE_VALUE__="";window.__COOKIE_CONSENT_PREFERENCES__={"consentToken":"0030000101"};window.__COOKIE_CONSENT_CATEGORIES__=null;window.__PRELOADED_COOKIE_PREFERENCES__=null;window.__SSR_IS_LIVE_PAGE__=false;window.__HYDRATION_ERRORS__=[];window.__CONNECT_RESOURCES_PRELOADED__=false;window.__SSR_CURRENT_DATE__=1765445030821;window.__CC_MOBILE_QUERY_PARAM_EXP__=true;window.__IS_BIFROST__=false;window.__SSR_REACT_STREAMING__=false;window.__SUPERBATCH_REQUESTED__=true;window.__MEDIA_CONFIG__={"clientId":"aff4166f-cde6-4811-89e3-70e019d4bea3","baseUrl":"https:\u002F\u002Fapi.media.atlassian.com","token":"eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhZmY0MTY2Zi1jZGU2LTQ4MTEtODllMy03MGUwMTlkNGJlYTMiLCJhY2Nlc3MiOnsidXJuOmZpbGVzdG9yZTpjb2xsZWN0aW9uOmNvbnRlbnRJZC0xNTc3NDU0IjpbInJlYWQiXX0sImV4cCI6MTc2NTQ0NzkxMSwibmJmIjoxNzY1NDQ1MDMxLCJodHRwczovL2lkLmF0bGFzc2lhbi5jb20vYXBwQWNjcmVkaXRlZCI6ZmFsc2V9.xZTemmAjzolS9GpcDV3uPlqtzxbMbiO_832s2dm3TZk"};window.__MEDIA_CONFIG_ENFORCE_DSP__=false;window.__LEGACY_MACRO_PARAMS__=[];window.__LEGACY_MACRO_SSRED__={"82cfbfa0-1857-4598-a295-7b3e71d111c8":"ssr-exp"};window.__LEGACY_MACRO_RENDERED_OUTPUT__=[];window.__POST_OFFICE_QUERY_CACHE__={};window.__SSR_BANNERS__=[{"name":"CookiesConsentBanner","height":105}];window.__SSR_CONTENT_STATE__=null;window.__SSR_EMOJI_TITLE__=null;window.__SSR_MACRO_PRELOAD_TOPX_FAILS__={};window.__TOTAL_SSR_ELEMENTS__={"SingleElement":38,"unknown":39,"ContentTreeIconLoader":25,"CustomHeaderFooterLoader":2,"Panel":2,"CodeBlock":3};window.__SSR_TEST_QUERY_FIRED__={};window.__SSR_PARTIAL_SUCCESS__={"PageTree":true};window.__SSR_RESTRICTED_PAGE__={"route":null,"errorType":null};window.__MISSING_DATA_MACROS__=[];window.__DELAYED_CONTENT_REDIRECTION__={"contentSlug":"Author+Interface+Description+Files"};window.__SSR_TRACE_ID__="aa283e8f789345b991da3b3ea00e78cb";window.__SSR_TRACE_SAMPLED__=false;window.__TESSERACT_LABEL__="prod-9848856";window.__SSR_REGION__="prod-east";window.performance.mark("wf/html/ssrGlobals.end");