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)
As part of XpoLog parsing language, users may apply a regular expression on another column in order to extract a specific value from that column.
Regular expressions language:
Characters x The character x \\ The backslash character \0n The character with octal value 0n (0 <= n <= 7) \0nn The character with octal value 0nn (0 <= n <= 7) \0mnn The character with octal value 0mnn (0 <= m <= 3, 0 <= n <= 7) \xhh The character with hexadecimal value 0xhh \uhhhh The character with hexadecimal value 0xhhhh \t The tab character ('\u0009') \n The newline (line feed) character ('\u000A') \r The carriage-return character ('\u000D') \f The form-feed character ('\u000C') \a The alert (bell) character ('\u0007') \e The escape character ('\u001B') \cx The control character corresponding to x
Character classes [abc] a, b, or c (simple class) [^abc] Any character except a, b, or c (negation) [a-zA-Z] a through z or A through Z, inclusive (range) [a-d[m-p]] a through d, or m through p: [a-dm-p] (union) [a-z&&[def]] d, e, or f (intersection) [a-z&&[^bc]] a through z, except for b and c: [ad-z] (subtraction) [a-z&&[^m-p]] a through z, and not m through p: [a-lq-z](subtraction)
Predefined character classes . Any character (may or may not match line terminators) \d A digit: [0-9] \D A non-digit: [^0-9] \s A whitespace character: [ \t\n\x0B\f\r] \S A non-whitespace character: [^\s] \w A word character: [a-zA-Z_0-9] \W A non-word character: [^\w]
POSIX character classes (US-ASCII only) \p{Lower} A lower-case alphabetic character: [a-z] \p{Upper} An upper-case alphabetic character:[A-Z] \p{ASCII} All ASCII:[\x00-\x7F] \p{Alpha} An alphabetic character:[\p{Lower}\p{Upper}] \p{Digit} A decimal digit: [0-9] \p{Alnum} An alphanumeric character:[\p{Alpha}\p{Digit}] \p{Punct} Punctuation: One of !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ \p{Graph} A visible character: [\p{Alnum}\p{Punct}] \p{Print} A printable character: [\p{Graph}] \p{Blank} A space or a tab: [ \t] \p{Cntrl} A control character: [\x00-\x1F\x7F] \p{XDigit} A hexadecimal digit: [0-9a-fA-F] \p{Space} A whitespace character: [ \t\n\x0B\f\r]
Classes for Unicode blocks and categories \p{InGreek} A character in the Greek block (simple block) \p{Lu} An uppercase letter (simple category) \p{Sc} A currency symbol \P{InGreek} Any character except one in the Greek block (negation) [\p{L}&&[^\p{Lu}]] Any letter except an uppercase letter (subtraction)
Boundary matchers ^ The beginning of a line $ The end of a line \b A word boundary \B A non-word boundary \A The beginning of the input \G The end of the previous match \Z The end of the input but for the final terminator, if any \z The end of the input
Greedy quantifiers ? any character, once or not at all * any character, zero or more times + any character, one or more times X{n} X, exactly n times X{n,} X, at least n times X{n,m} X, at least n but not more than m times
Reluctant quantifiers ?? any character, once or not at all *? any character, zero or more times +? any character, one or more times X{n}? X, exactly n times X{n,}? X, at least n times X{n,m}? X, at least n but not more than m times
Possessive quantifiers ?+ any character, once or not at all *+ any character, zero or more times ++ any character, one or more times X{n}+ X, exactly n times X{n,}+ X, at least n times X{n,m}+ X, at least n but not more than m times
Logical operators XY X followed by Y X|Y Either X or Y (X) X, as a capturing group
Back references \n Whatever the nth capturing group matched
Quotation \ Nothing, but quotes the following character \Q Nothing, but quotes all characters until \E \E Nothing, but ends quoting started by \Q
Special constructs (non-capturing) (?:X) X, as a non-capturing group (?idmsux-idmsux) Nothing, but turns match flags on - off (?idmsux-idmsux:X) X, as a non-capturing group with the given flags on - off (?=X) X, via zero-width positive lookahead (?!X) X, via zero-width negative lookahead (?<=X) X, via zero-width positive lookbehind (? (?>X) X, as an independent, non-capturing group
Backslashes, escapes, and quoting The backslash character ('\') serves to introduce escaped constructs, as defined above, as well as to quote characters that otherwise would be interpreted as un-escaped constructs. Thus the expression \\ matches a single backslash. One special case is right/left curly brackets since a curly bracket is used by XpoLog pattern syntax as a reserved sign to open/close field tags. To represent curly bracket which are not XpoLog reserved use: \u007B (left curly bracket) and \u007D (right curly bracket).
It is an error to use a backslash prior to any alphabetic character that does not denote an escaped construct; these are reserved for future extensions to the regular-expression language. A backslash may be used prior to a non-alphabetic character regardless of whether that character is part of an un-escaped construct.
Character Classes Character classes may appear within other character classes, and may be composed by the union operator (implicit) and the intersection operator (&&). The union operator denotes a class that contains every character that is in at least one of its operand classes. The intersection operator denotes a class that contains every character that is in both of its operand classes.
The precedence of character-class operators is as follows, from highest to lowest:
1 Literal escape \x 2 Grouping [...] 3 Range a-z 4 Union [a-e][i-u] 5 Intersection [a-z&&[aeiou]]
Note that a different set of metacharacters are in effect inside a character class than outside a character class. For instance, the regular expression . loses its special meaning inside a character class, while the expression - becomes a range forming metacharacter.
Line terminators A line terminator is a one- or two-character sequence that marks the end of a line of the input character sequence. The following are recognized as line terminators:
A newline (line feed) character ('\n'), A carriage-return character followed immediately by a newline character ("\r\n"), A standalone carriage-return character ('\r'), A next-line character ('\u0085'), A line-separator character ('\u2028'), or A paragraph-separator character ('\u2029). If UNIX_LINES mode is activated, then the only line terminators recognized are newline characters.
The regular expression . matches any character except a line terminator unless the DOTALL flag is specified.
By default, the regular expressions ^ and $ ignore line terminators and only match at the beginning and the end, respectively, of the entire input sequence. If MULTILINE mode is activated then ^ matches at the beginning of input and after any line terminator except at the end of input. When in MULTILINE mode $ matches just before a line terminator or the end of the input sequence.
For a more precise description of the behavior of regular expression constructs, please see Mastering Regular Expressions, 2nd Edition, Jeffrey E. F. Friedl, O'Reilly and Associates, 2002.
Syntax: regexp - a regular expression, used to extract part of the data from another column will be extracted out of the value in the source column
refIndex/refName (mandatory): the zero-based index of the source column / the name of the source column
columnType (mandatory for date/timestamp only): columnType=timestamp;dateFormat=<the desired format of the date> columnType=date;dateFormat=<the format of the date in the log to be extracted> dateUIFormat=<the format of the date desired to be displayed in XpoLog>
multiLine (optional): indicates whether the record spreads over more than one line
expression (mandatory): the regular expression that will be extracted out of the value in the source column
Examples:
Log Events Example
XpoLog Pattern
What will be extracted by the Regular Expression
Log Events Example
XpoLog Pattern
What will be extracted by the Regular Expression
Mon Jul 10 04:33:51 2017 ALTER DATABASE ADD LOGFILE THREAD 2 GROUP 3 ('/oradata/PROD/redo.log') SIZE 200K, GROUP 4 ('/oradata/PROD/redo.log') SIZE 200K ORA-336 signalled during: ALTER DATABASE ADD LOGFILE THREAD 2 GROUP 3 ('/oradata/PROD/redo.log') SIZE 200K, GROUP 4 ('/oradata/PROD/redo.log') SIZE 200K...
2017-05-05 12:00:00.000 will be extracted to a unique column of type date (which is a translation of the timestamp 1399291200000)
2017-05-05 12:00:00.000 ERROR Failed to run application, x=1 2017-05-05 12:00:00.000 ERROR Failed to run application, y=2 2017-05-05 12:00:00.000 ERROR Failed to run application, z=3
XXXX will be extracted to a a unique column (Code-X)
YYYYYY will be extracted to a a unique column (Code-Y)
window.performance.mark("wf/html/ssrGlobals.start");window.__PLATFORM_SSR_AGG_CACHE__={"relay-cache\u002Fv2\u002FAGG":{"requestMetadata":[],"responses":[]}};window.__LOADABLE__=["GCw5R","OP-5u","bTjE2","4qwYp","T-Qcy","BMpKa","xXIQx","IlAy6","6E8ob","NcP7O","fQj-o","kWSCB","ctWVd","8AYRE","Dl_eE","-KKls","g-l5_","6xpDa","GuqTT","HaydR","UJdch","qz-Pe","z8NN7","ViewPageRouteComponentLoader","6Cexk","0XSep","3f0hi","qHKXp","u0VI7","lwzlE","7obd3","ctj29","vP7ts","EfLS5","liSnz","R3F99","wgj5o","zM3y-","XLglR","KYiA6","Sb6aM","Gg8Jr","KjI9E"];window.__SSR_LONG_POLE_QUERY__={"query":"ContentUnifiedQuery","duration":217};window.__SSR_MEASURES__={"ssr-app\u002Fprepare\u002FinitializeCookie":{"startTime":194,"duration":12},"ssr-app\u002Fprepare":{"startTime":194,"duration":261},"ssr-app\u002Fprepare\u002FgetSessionData":{"startTime":194,"duration":89},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SiteInformationQuery":{"startTime":194,"duration":89},"ssr-app\u002Fprepare\u002FinitializeStatsigClient":{"startTime":196,"duration":21},"ssr-app\u002Fprepare\u002FinitializeStorageManager":{"startTime":203,"duration":8},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:LocalStorageQuery":{"startTime":204,"duration":2},"ssr-app\u002Fprepare\u002FloadTranslation":{"startTime":204,"duration":2},"ssr-app\u002Fprepare\u002FpreloadQuery":{"startTime":217,"duration":238},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useRegisterAdminAnnouncementBannerQuery":{"startTime":219,"duration":63},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ThemeQuery":{"startTime":219,"duration":63},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useLicensedProductsQueryForGlobalAppShortcutsQuery":{"startTime":219,"duration":63},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:onboardingStateGetOnboardingStateQuery":{"startTime":221,"duration":68},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:TopNavigationQuery":{"startTime":223,"duration":49},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:AppNavigationUnifiedQuery":{"startTime":223,"duration":49},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebItemLocationQuery_system.header_left":{"startTime":223,"duration":49},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:EditorPreferencesQuery":{"startTime":223,"duration":49},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SpaceRestrictionCheckQuery":{"startTime":225,"duration":180},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PageRestrictionsContextQuery":{"startTime":225,"duration":180},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentTypesHeaderQuery":{"startTime":225,"duration":180},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebItemLocationQuery_page.metadata.banner":{"startTime":225,"duration":180},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:EditContentButtonQuery":{"startTime":228,"duration":186},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FslowQueryGuard:preloadContentAnalyticsViewers":{"startTime":228,"duration":198},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useAnalyticsByLineQuery":{"startTime":229,"duration":197},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useReadTimeQuery":{"startTime":229,"duration":209},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentHeaderUnifiedQuery":{"startTime":231,"duration":146},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:RendererContentStateQuery":{"startTime":231,"duration":146},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:usePreloadCommentButtonQuery":{"startTime":231,"duration":146},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useContentClassificationContentDataClassificationQuery":{"startTime":231,"duration":146},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FguardException:Macros":{"startTime":232,"duration":115},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FslowQueryGuard:MacrosQuery_preload":{"startTime":232,"duration":115},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:multiMacroQueryWithAppKeyQuery":{"startTime":233,"duration":113},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FguardException:Content":{"startTime":233,"duration":222},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentUnifiedQuery":{"startTime":234,"duration":217},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useFabricEligibilityMigrationQuery":{"startTime":235,"duration":149},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useTitleContentPropertiesForPublishedPageQuery":{"startTime":235,"duration":149},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ArchivedPageBannerV2ArchivedPageBannerContainerQuery":{"startTime":235,"duration":149},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:preloadPageStatusQueryDataQuery":{"startTime":235,"duration":149},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:preloadLegacyBridgeQuery":{"startTime":237,"duration":191},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:preloadContentSmartLinksQuery":{"startTime":237,"duration":191},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useEditorContentModeValueQuery":{"startTime":237,"duration":191},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ViewSpaceExternalCollaboratorsDialogQuery":{"startTime":237,"duration":191},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ForgeExtensionList":{"startTime":238,"duration":56},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:agg_FetchPreFilteredForgeAppsQuery_confluence_spacePage":{"startTime":238,"duration":42},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useShortcutsSpaceNavigationQuery":{"startTime":242,"duration":175},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SpaceNavigationQuery":{"startTime":242,"duration":175},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useSpaceViewsDataSpaceRootQuery":{"startTime":242,"duration":175},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PageTreeQuery":{"startTime":242,"duration":175},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:BlogTreeRootComponentQuery":{"startTime":243,"duration":120},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:FooterCreateButtonsQuery":{"startTime":244,"duration":161},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useSpaceDetailQuery":{"startTime":244,"duration":161},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebPanelLocationQuery_atl.page.content.footer.actions":{"startTime":244,"duration":161},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ReactionsContentQuery":{"startTime":244,"duration":161},"ssr-app\u002Fprepare\u002FpreloadQuery\u002FslowQueryGuard:preloadEndOfPageRecommendation":{"startTime":244,"duration":67},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:EndOfPageRecommendationQuery":{"startTime":244,"duration":66},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:graphqlHelpersFetchMediaTokenQuery":{"startTime":246,"duration":160},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:CustomHeaderFooterQuery":{"startTime":246,"duration":160},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:graphqlHelpersDSPIsActionEnabledForContentQuery":{"startTime":246,"duration":160},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebPanelLocationQuery_atl.general":{"startTime":246,"duration":160},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:useAudioContentQuery":{"startTime":246,"duration":89},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:agg_FetchPreFilteredForgeAppsQuery_xen_macro":{"startTime":247,"duration":47},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:agg_PlatformHighlightKeywordsQuery":{"startTime":247,"duration":28},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ActiveCommentsQuery":{"startTime":249,"duration":125},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:WebPanelLocationQuery_atl.footer":{"startTime":250,"duration":188},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:ContentHeaderPresenceContentSettingsQuery":{"startTime":250,"duration":188},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PermissionCheckAddCommentQuery":{"startTime":250,"duration":188},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:SmartCreateFeedbackBannerQuery":{"startTime":250,"duration":188},"ssr-app\u002Fprepare\u002FpreloadQuery\u002Ffetch:PersistentInviteEligibleQuery":{"startTime":251,"duration":95},"ssr-app\u002Frender":{"startTime":455,"duration":214},"ssr-app\u002Frender\u002Fapp-navigation":{"startTime":473,"duration":19},"ssr-app\u002Frender\u002Fglobal-navigation":{"startTime":494,"duration":5},"ssr-app\u002Frender\u002Fspace-navigation":{"startTime":499,"duration":55},"ssr-app\u002Frender\u002Fpage-tree":{"startTime":509,"duration":45},"ssr-app\u002Frender\u002Fview-page-container":{"startTime":562,"duration":103},"ssr-app\u002Frender\u002Fcp-web-fragment":{"startTime":566,"duration":0},"ssr-app\u002Frender\u002Fobject-header":{"startTime":570,"duration":8},"ssr-app\u002Frender\u002Fcontent-title":{"startTime":580,"duration":4},"ssr-app\u002Frender\u002Fbyline":{"startTime":584,"duration":17},"ssr-app\u002Frender\u002Fread-time":{"startTime":589,"duration":7},"ssr-app\u002Frender\u002Fcontent-renderer":{"startTime":605,"duration":40},"ssr-app\u002Frender\u002Ffabric-comments-highlights":{"startTime":607,"duration":0},"ssr-app\u002Frender\u002Fobject-sidebar-control":{"startTime":647,"duration":8},"ssr-app\u002FgenerateResult":{"startTime":669,"duration":10},"ssr-app\u002FgenerateResult\u002FreplacePlaceholderMarkers":{"startTime":669,"duration":6},"server\u002Fmiddlewares\u002Fcreate-context":{"startTime":0,"duration":0},"server\u002Fmiddlewares\u002Frender-context":{"startTime":0,"duration":6},"server\u002Fmiddlewares\u002Fno-ssr":{"startTime":7,"duration":0},"server\u002Fmiddlewares\u002Fcreate-ssr-context":{"startTime":7,"duration":0},"server\u002Fmiddlewares\u002Flive-page":{"startTime":7,"duration":53},"server\u002Fmiddlewares\u002Fauth":{"startTime":7,"duration":18},"server\u002Fmonolith-request":{"startTime":9,"duration":50},"server\u002Fmonolith-request\u002Ffetch":{"startTime":9,"duration":50},"server\u002Fmiddlewares\u002Fauth\u002FgetJanusVersion":{"startTime":8,"duration":1},"server\u002Fmiddlewares\u002Fauth\u002FfetchMonolith":{"startTime":9,"duration":16},"server\u002Fmiddlewares\u002Flegacy-superbatch":{"startTime":25,"duration":1},"server\u002Fhtml-flush\u002Fhigh-priority-code-check":{"startTime":0,"duration":26},"server\u002Fhtml-flush\u002Fpreload-scripts":{"startTime":0,"duration":62},"server\u002Fhtml-flush\u002Fwait-monolith-response":{"startTime":62,"duration":2},"server\u002Fhtml-flush\u002Fwait-render-context":{"startTime":64,"duration":52},"server\u002Ftesseract-request\u002FgetRenderContext":{"startTime":130,"duration":0},"server\u002Ftesseract-request\u002Fstream":{"startTime":131,"duration":563},"server\u002Ftesseract-request\u002FgenHeader":{"startTime":131,"duration":1},"server\u002Fhtml-flush\u002Fwait-tesseract-stream":{"startTime":694,"duration":0}};window.__APOLLO_STATE__={"$ROOT_QUERY.siteConfiguration":{"customSiteLogo":true,"__typename":"SiteConfiguration"},"ROOT_QUERY":{"siteConfiguration":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteConfiguration","typename":"SiteConfiguration"},"siteSettings":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteSettings","typename":"SiteSettings"},"siteDescription":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteDescription","typename":"SiteDescription"},"confluence_atlassianUser({\"current\":true})":null,"lookAndFeel":{"type":"id","generated":true,"id":"$ROOT_QUERY.lookAndFeel","typename":"LookAndFeelSettings"},"webItemSections({\"contentId\":null,\"key\":null,\"location\":\"system.header\u002Fleft\",\"locations\":[],\"version\":null})":[{"type":"id","generated":false,"id":"-system.header\u002Fleft-leading","typename":"WebSection"}],"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,"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\":\"25-30\"}","experimentFeatures":"{\"confluence_backend_fabric_editor_for_all_pages\":\"false\",\"confluence_live_pages_beta\":\"beta-default-on\",\"confluence_content_wrapper_beta\":\"null\",\"confluence_modernize\":\"exp-test\",\"confluence_aifc\":\"exp-test\"}","userCanCreateContent":false,"isNewUser":false,"currentConfluenceUser":{"type":"id","generated":true,"id":"$ROOT_QUERY.currentConfluenceUser","typename":"CurrentConfluenceUser"},"adminAnnouncementBanner":null,"space({\"key\":\"XPOL\"})":{"type":"id","generated":false,"id":"Space:1593966486","typename":"Space"},"getRecommendedPages({\"entityId\":\"1595637714\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1595637714\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"})","typename":"RecommendedPages"},"getRecommendedPagesSpaceStatus({\"entityId\":\"XPOL\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.getRecommendedPagesSpaceStatus({\"entityId\":\"XPOL\"})","typename":"RecommendedPagesSpaceStatus"},"singleContent({\"id\":\"1595637714\"})":{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"},"macros({\"blocklist\":[\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"table-filter\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1595637714\",\"first\":8})":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"table-filter\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1595637714\",\"first\":8})","typename":"MacroConnection"},"content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"XPOL\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"XPOL\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"})","typename":"PaginatedContentListWithChild"},"comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":3,\"pageId\":\"1595637714\",\"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\":\"1595637714\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})","typename":"PaginatedCommentList"},"comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":2000,\"pageId\":\"1595637714\",\"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\":\"1595637714\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})","typename":"PaginatedCommentList"},"content({\"embeddedContentRender\":null,\"id\":\"1595637714\",\"version\":null})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"embeddedContentRender\":null,\"id\":\"1595637714\",\"version\":null})","typename":"PaginatedContentListWithChild"},"contentContributors({\"id\":\"1595637714\",\"limit\":4})":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4})","typename":"ContentContributors"},"comments({\"depth\":\"ALL\",\"pageId\":\"1595637714\",\"type\":\"UNRESOLVED\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.comments({\"depth\":\"ALL\",\"pageId\":\"1595637714\",\"type\":\"UNRESOLVED\"})","typename":"PaginatedCommentList"},"content({\"id\":\"1595637714\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\"})","typename":"PaginatedContentListWithChild"},"singleContent({\"id\":\"1595637714\",\"status\":[\"current\"]})":{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"},"content({\"id\":\"1595637714\",\"status\":[\"current\",\"archived\",\"draft\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"current\",\"archived\",\"draft\"]})","typename":"PaginatedContentListWithChild"},"content({\"id\":\"1595637714\",\"status\":[\"archived\",\"current\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"archived\",\"current\"]})","typename":"PaginatedContentListWithChild"},"singleContent({\"id\":\"1595637714\",\"status\":[\"current\",\"draft\",\"archived\"]})":{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"},"content({\"id\":\"1595637714\",\"status\":[\"archived\",\"current\",\"draft\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"archived\",\"current\",\"draft\"]})","typename":"PaginatedContentListWithChild"},"webItemSections({\"contentId\":\"1595637714\",\"key\":null,\"location\":\"page.metadata.banner\",\"locations\":[],\"version\":null})":[{"type":"id","generated":false,"id":"-page.metadata.banner-leading:content\u002F1595637714","typename":"WebSection"}],"webPanels({\"contentId\":\"1595637714\",\"location\":\"atl.page.content.footer.actions\"})":[{"type":"id","generated":true,"id":"ROOT_QUERY.webPanels({\"contentId\":\"1595637714\",\"location\":\"atl.page.content.footer.actions\"}).0","typename":"WebPanel"}],"content({\"id\":\"1595637714\",\"status\":[\"current\",\"draft\",\"archived\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"current\",\"draft\",\"archived\"]})","typename":"PaginatedContentListWithChild"},"mediaConfiguration":{"type":"id","generated":true,"id":"$ROOT_QUERY.mediaConfiguration","typename":"MediaConfiguration"},"dataSecurityPolicy":{"type":"id","generated":true,"id":"$ROOT_QUERY.dataSecurityPolicy","typename":"Confluence_dataSecurityPolicy"},"webPanels({\"contentId\":\"1595637714\",\"location\":\"atl.general\"})":[],"spaceSidebarLinks({\"spaceKey\":\"XPOL\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.spaceSidebarLinks({\"spaceKey\":\"XPOL\"})","typename":"SpaceSidebarLinks"},"ptpage({\"enablePaging\":true,\"id\":\"1595637714\",\"pageTree\":80,\"spaceKey\":\"XPOL\",\"status\":[\"CURRENT\",\"DRAFT\"]})":{"type":"id","generated":false,"id":"PTPage:1595637714","typename":"PTPage"},"ptpage({\"enablePaging\":true,\"pageTree\":80,\"spaceKey\":\"XPOL\",\"status\":[\"CURRENT\",\"DRAFT\"]})":{"type":"id","generated":false,"id":"PTPage:1595408434","typename":"PTPage"},"contentAnalyticsViewers({\"contentId\":\"1595637714\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentAnalyticsViewers({\"contentId\":\"1595637714\"})","typename":"ContentAnalyticsViewers"},"ptpage({\"id\":\"1595637714\",\"status\":[\"CURRENT\"]})":{"type":"id","generated":false,"id":"PTPage:1595637714","typename":"PTPage"},"contentSmartLinks({\"id\":\"1595637714\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentSmartLinks({\"id\":\"1595637714\"})","typename":"PaginatedSmartLinkList"},"content({\"id\":\"1595637714\",\"status\":[\"current\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"current\"]})","typename":"PaginatedContentListWithChild"},"webPanels({\"contentId\":\"1595637714\",\"location\":\"atl.footer\"})":[{"type":"id","generated":true,"id":"ROOT_QUERY.webPanels({\"contentId\":\"1595637714\",\"location\":\"atl.footer\"}).0","typename":"WebPanel"}],"confluence_teamPresenceContentSetting({\"cloudId\":\"ba59c560-d40a-4f26-901d-760291a417f8\",\"spaceKey\":\"XPOL\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_teamPresenceContentSetting({\"cloudId\":\"ba59c560-d40a-4f26-901d-760291a417f8\",\"spaceKey\":\"XPOL\"})","typename":"ConfluenceTeamPresence"},"content({\"id\":\"1595637714\",\"status\":[\"draft\",\"current\"]})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"draft\",\"current\"]})","typename":"PaginatedContentListWithChild"},"content({\"id\":\"1595637714\",\"version\":null})":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"id\":\"1595637714\",\"version\":null})","typename":"PaginatedContentListWithChild"}},"$ROOT_QUERY.siteSettings":{"siteTitle":"XPLG Technical Resources","showApplicationTitle":false,"__typename":"SiteSettings","homepage":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteSettings.homepage","typename":"Homepage"},"frontCover":{"type":"id","generated":true,"id":"$ROOT_QUERY.siteSettings.frontCover","typename":"FrontCover"},"companyHubName":"Company hub"},"$ROOT_QUERY.siteDescription":{"logoUrl":"\u002Fwiki\u002Fdownload\u002Fattachments\u002F32771\u002Fatl.site.logo?version=1&modificationDate=1645605713193&cacheVersion=1&api=v2","__typename":"SiteDescription"},"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader":{"backgroundColor":"#ffffff","primaryNavigation":{"type":"id","generated":true,"id":"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader.primaryNavigation","typename":"NavigationLookAndFeel"},"__typename":"HeaderLookAndFeel"},"$ROOT_QUERY.lookAndFeel.custom.horizontalHeader.primaryNavigation":{"highlightColor":"#292929","__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"},"-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"}],"__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"},"$ROOT_QUERY.tenant":{"shard":"confluence-prod-us-2-3.prod.atl-paas.net","cloudId":"ba59c560-d40a-4f26-901d-760291a417f8","environment":"PRODUCTION","activationId":"f0fe8a64-bdb5-4bb3-a172-daa3aa838797","__typename":"Tenant"},"$ROOT_QUERY.organization":{"orgId":"99c2a8d7-7039-444b-b60b-430c1e8db67b","__typename":"Organization"},"$ROOT_QUERY.getAIConfig({\"product\":\"CONFLUENCE\"})":{"isEnabled":false,"isRovoEnabled":false,"isAIEarlyAccessEnabled":true,"isRovoLLMEnabled":false,"__typename":"AIConfigResponse"},"$ROOT_QUERY.confluence_tenantContext.licenseStates.confluence":{"ccpEntitlementId":"7ba1ff98-b3bd-4f83-a571-339c07ed41ce","__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":"Asia\u002FJerusalem","editions":{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.editions","typename":"Editions"},"monolithRegion":"prod-west2","__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"},{"type":"id","generated":true,"id":"$ROOT_QUERY.confluence_tenantContext.licensedProducts.8","typename":"LicensedProduct"}]},"$ROOT_QUERY.confluence_tenantContext.editions":{"confluence":"STANDARD","__typename":"Editions"},"$ROOT_QUERY.siteSettings.homepage":{"uri":"\u002Fspaces\u002FXPOL\u002Foverview","title":"Overview","__typename":"Homepage"},"$ROOT_QUERY.siteSettings.frontCover":{"frontCoverState":"hidden","__typename":"FrontCover"},"$ROOT_QUERY.currentConfluenceUser":{"isAnonymous":true,"__typename":"CurrentConfluenceUser"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.0":{"licenseStatus":"UNLICENSED","productKey":"jira-servicedesk","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.1":{"licenseStatus":"ACTIVE","productKey":"jira-product-discovery","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.2":{"licenseStatus":"ACTIVE","productKey":"confluence","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.3":{"licenseStatus":"ACTIVE","productKey":"goal","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.4":{"licenseStatus":"ACTIVE","productKey":"rovo","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.5":{"licenseStatus":"ACTIVE","productKey":"jira-software","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.6":{"licenseStatus":"UNLICENSED","productKey":"confluence.feature","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.7":{"licenseStatus":"ACTIVE","productKey":"project","__typename":"LicensedProduct"},"$ROOT_QUERY.confluence_tenantContext.licensedProducts.8":{"licenseStatus":"UNLICENSED","productKey":"confluence.feature.auditLog","__typename":"LicensedProduct"},"Space:1593966486":{"id":"1593966486","__typename":"Space","currentUser":{"type":"id","generated":true,"id":"$Space:1593966486.currentUser","typename":"SpaceUserMetadata"},"name":"XPLG","homepageId":"1593933721","theme":null,"lookAndFeel":{"type":"id","generated":true,"id":"$Space:1593966486.lookAndFeel","typename":"LookAndFeel"},"settings":{"type":"id","generated":true,"id":"$Space:1593966486.settings","typename":"SpaceSettings"},"key":"XPOL","alias":"XPOL","spaceTypeSettings":{"type":"id","generated":true,"id":"$Space:1593966486.spaceTypeSettings","typename":"SpaceTypeSettings"},"didContainUserContent":true,"operations":[{"type":"id","generated":true,"id":"Space:1593966486.operations.0","typename":"OperationCheckResult"}],"type":"global","dataClassificationTags":{"type":"json","json":[]},"homepage":{"type":"id","generated":false,"id":"Content:1593933721","typename":"Content"},"icon":{"type":"id","generated":true,"id":"$Space:1593966486.icon","typename":"Icon"},"status":"current","containsExternalCollaborators":false,"history":{"type":"id","generated":true,"id":"$Space:1593966486.history","typename":"SpaceHistory"},"externalCollaboratorCount":0},"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1595637714\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"})":{"recommendedPages":[],"status":{"type":"id","generated":true,"id":"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1595637714\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"}).status","typename":"RecommendedPagesStatus"},"__typename":"RecommendedPages"},"$ROOT_QUERY.getRecommendedPages({\"entityId\":\"1595637714\",\"entityType\":\"page\",\"experience\":\"end_of_page_v5\"}).status":{"userCanToggle":false,"isEnabled":false,"__typename":"RecommendedPagesStatus"},"$ROOT_QUERY.getRecommendedPagesSpaceStatus({\"entityId\":\"XPOL\"})":{"recommendedPagesEnabled":false,"defaultBehavior":"HIDDEN","__typename":"RecommendedPagesSpaceStatus"},"Content:1595637714":{"id":"1595637714","title":"XpoLog Regular Expressions Patterns Language","subType":null,"properties({\"key\":\"emoji-title-published\"})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"emoji-title-published\"})","typename":"PaginatedJsonContentPropertyList"},"history":{"type":"id","generated":true,"id":"$Content:1595637714.history","typename":"History"},"links":{"type":"id","generated":true,"id":"$Content:1595637714.links","typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"properties({\"keys\":[\"emoji-title-published\",\"editor\"]})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"keys\":[\"emoji-title-published\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"Content","type":"page","status":"current","properties({\"key\":\"content-appearance-published\"})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"content-appearance-published\"})","typename":"PaginatedJsonContentPropertyList"},"properties({\"key\":\"page-title-property-published\"})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"page-title-property-published\"})","typename":"PaginatedJsonContentPropertyList"},"properties({\"key\":\"editor\"})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"editor\"})","typename":"PaginatedJsonContentPropertyList"},"space":{"type":"id","generated":false,"id":"Space:1593966486","typename":"Space"},"version":{"type":"id","generated":true,"id":"$Content:1595637714.version","typename":"Version"},"contentProperties":{"type":"id","generated":true,"id":"$Content:1595637714.contentProperties","typename":"ContentProperties"},"metadata":{"type":"id","generated":true,"id":"$Content:1595637714.metadata","typename":"ContentMetadata"},"contentState({\"isDraft\":false})":null,"contentStateLastUpdated({\"format\":\"USER_FRIENDLY\"})":null,"classificationLevelDetails":{"type":"id","generated":true,"id":"$Content:1595637714.classificationLevelDetails","typename":"ClassificationLevelDetails"},"properties({\"key\":\"page-title-property-draft\"})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"page-title-property-draft\"})","typename":"PaginatedJsonContentPropertyList"},"hasInheritedRestrictions":false,"hasViewRestrictions":false,"hasRestrictions":false,"operations":[{"type":"id","generated":true,"id":"Content:1595637714.operations.0","typename":"OperationCheckResult"}],"draftVersion":{"type":"id","generated":true,"id":"$Content:1595637714.draftVersion","typename":"Version"},"contentReactionsSummary":{"type":"id","generated":true,"id":"$Content:1595637714.contentReactionsSummary","typename":"ReactionsSummaryResponse"},"body":{"type":"id","generated":true,"id":"$Content:1595637714.body","typename":"ContentBodyPerRepresentation"},"creatorId":"61c4d2b17c6f980070ae8cc1","properties({\"keys\":[\"cover-picture-id-published\",\"emoji-title-published\",\"editor\",\"import-source\",\"imported-page-modified-date\"]})":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"keys\":[\"cover-picture-id-published\",\"emoji-title-published\",\"editor\",\"import-source\",\"imported-page-modified-date\"]})","typename":"PaginatedJsonContentPropertyList"},"macroRenderedOutput":[],"labels({\"orderBy\":{\"direction\":\"ASCENDING\",\"sortField\":\"LABELLING_CREATIONDATE\"}})":{"type":"id","generated":true,"id":"$Content:1595637714.labels({\"orderBy\":{\"direction\":\"ASCENDING\",\"sortField\":\"LABELLING_CREATIONDATE\"}})","typename":"PaginatedLabelList"}},"$Content:1595637714.properties({\"key\":\"emoji-title-published\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1595637714.history.createdBy":{"__typename":"KnownUser","displayName":"Engineering (Unlicensed)","profilePicture":{"type":"id","generated":true,"id":"$Content:1595637714.history.createdBy.profilePicture","typename":"Icon"},"type":"known","accountId":"61c4d2b17c6f980070ae8cc1"},"$Content:1595637714.history.createdBy.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F61c4d2b17c6f980070ae8cc1","__typename":"Icon"},"$Content:1595637714.history":{"createdBy":{"type":"id","generated":true,"id":"$Content:1595637714.history.createdBy","typename":"KnownUser"},"ownedBy":{"type":"id","generated":true,"id":"$Content:1595637714.history.ownedBy","typename":"KnownUser"},"__typename":"History","createdDate":"2014-02-20T04:27:43.000Z","lastOwnedBy":null},"$Content:1595637714.history.ownedBy":{"__typename":"KnownUser","displayName":"Engineering (Unlicensed)","profilePicture":{"type":"id","generated":true,"id":"$Content:1595637714.history.ownedBy.profilePicture","typename":"Icon"},"type":"known","accountId":"61c4d2b17c6f980070ae8cc1"},"$Content:1595637714.history.ownedBy.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F61c4d2b17c6f980070ae8cc1","__typename":"Icon"},"$Content:1595637714.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1595637714\u002FXpoLog+Regular+Expressions+Patterns+Language","base":"https:\u002F\u002Fxpolog.atlassian.net\u002Fwiki","__typename":"LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase"},"$Content:1595637714.properties({\"keys\":[\"emoji-title-published\",\"editor\"]}).nodes.0":{"value":null,"key":"editor","__typename":"JsonContentProperty"},"$Content:1595637714.properties({\"keys\":[\"emoji-title-published\",\"editor\"]})":{"nodes":[{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"keys\":[\"emoji-title-published\",\"editor\"]}).nodes.0","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$ROOT_QUERY.macros({\"blocklist\":[\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"table-filter\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1595637714\",\"first\":8}).pageInfo":{"hasNextPage":false,"endCursor":null,"__typename":"PageInfoV2"},"$ROOT_QUERY.macros({\"blocklist\":[\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"table-filter\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1595637714\",\"first\":8})":{"pageInfo":{"type":"id","generated":true,"id":"$ROOT_QUERY.macros({\"blocklist\":[\"jirachart\",\"jiraroadmap\",\"ui-button\",\"contentbylabel\",\"excerpt-include\",\"tasks-report-macro\",\"blog-posts\",\"table-filter\",\"detailssummary\",\"decisionreport\"],\"contentId\":\"1595637714\",\"first\":8}).pageInfo","typename":"PageInfoV2"},"nodes":[],"__typename":"MacroConnection"},"$Space:1593966486.currentUser":{"isAnonymouslyAuthorized":true,"__typename":"SpaceUserMetadata","isAdmin":false},"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"XPOL\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"}).pageInfo":{"hasNextPage":false,"endCursor":null,"__typename":"PageInfo"},"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"XPOL\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"})":{"pageInfo":{"type":"id","generated":true,"id":"$ROOT_QUERY.content({\"first\":40,\"orderby\":\"metadata.createdDate desc\",\"spaceKey\":\"XPOL\",\"status\":[\"current\",\"draft\"],\"type\":\"blogpost\"}).pageInfo","typename":"PageInfo"},"nodes":[],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":3,\"pageId\":\"1595637714\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})":{"__typename":"PaginatedCommentList","nodes":[],"totalCount":0},"$ROOT_QUERY.comments({\"confluenceCommentFilter\":{\"commentState\":\"UNRESOLVED\",\"commentType\":[\"FOOTER\"]},\"contentStatus\":[\"CURRENT\",\"DRAFT\"],\"depth\":\"ROOT\",\"first\":2000,\"pageId\":\"1595637714\",\"singleThreaded\":true,\"type\":[\"FOOTER\"]})":{"__typename":"PaginatedCommentList","nodes":[],"totalCount":0},"$Content:1595637714.properties({\"key\":\"content-appearance-published\"}).nodes.0":{"id":null,"key":"content-appearance-published","value":"\"max\"","version":{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"content-appearance-published\"}).nodes.0.version","typename":"Version"},"__typename":"JsonContentProperty"},"$Content:1595637714.properties({\"key\":\"content-appearance-published\"}).nodes.0.version":{"number":1,"__typename":"Version"},"$Content:1595637714.properties({\"key\":\"content-appearance-published\"})":{"nodes":[{"type":"id","generated":true,"id":"$Content:1595637714.properties({\"key\":\"content-appearance-published\"}).nodes.0","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1595637714.properties({\"key\":\"page-title-property-published\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"JsonContentProperty:P1595637714":{"id":"P1595637714","key":"editor","value":null,"__typename":"JsonContentProperty","version":null},"$Content:1595637714.properties({\"key\":\"editor\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1595637714.version":{"message":"","by":{"type":"id","generated":true,"id":"$Content:1595637714.version.by","typename":"KnownUser"},"friendlyWhen":"Jun 24, 2017","when":"2017-06-24T05:42:04.495Z","number":5,"contentTypeModified":false,"__typename":"Version","confRev":"confluence$content$1595637714.32"},"$Content:1595637714.version.by":{"__typename":"KnownUser","type":"known","displayName":"Omry Koschitzky (Unlicensed)","accountId":"557058:323b73d0-4c0a-449e-8045-90221d510d54","profilePicture":{"type":"id","generated":true,"id":"$Content:1595637714.version.by.profilePicture","typename":"Icon"}},"$Content:1595637714.version.by.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F557058:323b73d0-4c0a-449e-8045-90221d510d54","__typename":"Icon"},"$Content:1595637714.contentProperties.latest":{"generatedBy":null,"__typename":"PublishedContentProperties","contentMode":"compact"},"$Content:1595637714.contentProperties":{"latest":{"type":"id","generated":true,"id":"$Content:1595637714.contentProperties.latest","typename":"PublishedContentProperties"},"__typename":"ContentProperties","draft":{"type":"id","generated":true,"id":"$Content:1595637714.contentProperties.draft","typename":"DraftContentProperties"}},"$Content:1595637714.metadata":{"sourceTemplateEntityId":"","lastModifiedDate":"2017-06-24T05:42:04.495Z","frontend":{"type":"id","generated":true,"id":"$Content:1595637714.metadata.frontend","typename":"ContentMetadata_SpaFriendlyMetadataProvider_frontend"},"__typename":"ContentMetadata"},"$Content:1595637714.metadata.frontend":{"fabricEditorSupported":true,"coverPictureWidth":"full","__typename":"ContentMetadata_SpaFriendlyMetadataProvider_frontend","fabricEditorEligibility":"SUPPORTED","contentHash":"19469","embedded":true,"collabService":"ncs"},"$ROOT_QUERY.content({\"embeddedContentRender\":null,\"id\":\"1595637714\",\"version\":null})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4})":{"count":2,"isCurrentUserContributor":false,"isOwnerContributor":true,"nodes":[{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.0","typename":"KnownUser"},{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.1","typename":"KnownUser"}],"__typename":"ContentContributors"},"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.0":{"__typename":"KnownUser","type":"known","displayName":"Engineering (Unlicensed)","accountId":"61c4d2b17c6f980070ae8cc1","profilePicture":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.0.profilePicture","typename":"Icon"}},"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.0.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F61c4d2b17c6f980070ae8cc1","__typename":"Icon"},"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.1":{"__typename":"KnownUser","type":"known","displayName":"Omry Koschitzky (Unlicensed)","accountId":"557058:323b73d0-4c0a-449e-8045-90221d510d54","profilePicture":{"type":"id","generated":true,"id":"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.1.profilePicture","typename":"Icon"}},"$ROOT_QUERY.contentContributors({\"id\":\"1595637714\",\"limit\":4}).nodes.1.profilePicture":{"path":"\u002Fwiki\u002Faa-avatar\u002F557058:323b73d0-4c0a-449e-8045-90221d510d54","__typename":"Icon"},"$Space:1593966486.lookAndFeel.headings.0":{"key":"color","value":"var(--ds-text, #172b4d)","__typename":"MapOfStringToString"},"$Space:1593966486.lookAndFeel":{"headings":[{"type":"id","generated":true,"id":"$Space:1593966486.lookAndFeel.headings.0","typename":"MapOfStringToString"}],"content":{"type":"id","generated":true,"id":"$Space:1593966486.lookAndFeel.content","typename":"ContentLookAndFeel"},"__typename":"LookAndFeel"},"$Space:1593966486.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:1593966486.lookAndFeel.content":{"header":{"type":"id","generated":true,"id":"$Space:1593966486.lookAndFeel.content.header","typename":"ContainerLookAndFeel"},"__typename":"ContentLookAndFeel","screen":{"type":"id","generated":true,"id":"$Space:1593966486.lookAndFeel.content.screen","typename":"ScreenLookAndFeel"},"container":{"type":"id","generated":true,"id":"$Space:1593966486.lookAndFeel.content.container","typename":"ContainerLookAndFeel"}},"$ROOT_QUERY.comments({\"depth\":\"ALL\",\"pageId\":\"1595637714\",\"type\":\"UNRESOLVED\"})":{"count":0,"nodes":[],"__typename":"PaginatedCommentList"},"$ROOT_QUERY.content({\"id\":\"1595637714\"})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Content:1595637714.classificationLevelDetails":{"classificationLevel":null,"featureEnabled":false,"source":null,"isReclassificationPermitted":false,"canManageSpaceSettings":false,"classificationControlSetting":"ANY","userOverrideSetting":"ANY","__typename":"ClassificationLevelDetails"},"$Content:1595637714.properties({\"key\":\"page-title-property-draft\"})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"current\",\"archived\",\"draft\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"archived\",\"current\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Space:1593966486.settings":{"routeOverrideEnabled":true,"__typename":"SpaceSettings","customHeaderAndFooter":{"type":"id","generated":true,"id":"$Space:1593966486.settings.customHeaderAndFooter","typename":"SpaceSettingsMetadata"}},"Content:1595637714.operations.0":{"operation":"read","targetType":"page","__typename":"OperationCheckResult"},"$Content:1595637714.draftVersion":{"contentTypeModified":false,"number":1,"friendlyWhen":"Jan 09, 2022","by":{"type":"id","generated":true,"id":"$Content:1595637714.draftVersion.by","typename":"KnownUser"},"when":"2022-01-09T13:02:42.557Z","__typename":"Version"},"$Content:1595637714.draftVersion.by":{"displayName":"Noga Aviram (Unlicensed)","__typename":"KnownUser"},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"archived\",\"current\",\"draft\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"-page.metadata.banner-leading:content\u002F1595637714":{"id":"-page.metadata.banner-leading","label":null,"cacheKey":"-page.metadata.banner-leading:content\u002F1595637714","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"},"$Space:1593966486.spaceTypeSettings.enabledContentTypes":{"isLivePagesEnabled":true,"isWhiteboardsEnabled":true,"isDatabasesEnabled":true,"__typename":"EnabledContentTypes"},"$Space:1593966486.spaceTypeSettings":{"enabledContentTypes":{"type":"id","generated":true,"id":"$Space:1593966486.spaceTypeSettings.enabledContentTypes","typename":"EnabledContentTypes"},"__typename":"SpaceTypeSettings"},"Space:1593966486.operations.0":{"operation":"read","targetType":"space","__typename":"OperationCheckResult"},"Content:1593933721":{"id":"1593933721","title":"Overview","type":"page","__typename":"Content"},"$Space:1593966486.icon":{"path":"\u002Fdownload\u002Fattachments\u002F1593933718\u002FXPOL?version=2&modificationDate=1352821006000&cacheVersion=1&api=v2","__typename":"Icon"},"ROOT_QUERY.webPanels({\"contentId\":\"1595637714\",\"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:1595637714.contentReactionsSummary":{"reactionsCount":0,"ari":"ari:cloud:confluence:ba59c560-d40a-4f26-901d-760291a417f8:page\u002F1595637714","containerAri":null,"reactionsSummaryForEmoji":[],"__typename":"ReactionsSummaryResponse"},"$Content:1595637714.body.atlas_doc_format.mediaToken":{"token":"eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiIwMDVkMjZkYy1kZWQ0LTRkYzctYjlkOC01Y2JlNjg3MTY5MDEiLCJhY2Nlc3MiOnsidXJuOmZpbGVzdG9yZTpjb2xsZWN0aW9uOmNvbnRlbnRJZC0xNTk1NjM3NzE0IjpbInJlYWQiXX0sImV4cCI6MTc3MzUxMDIxNywibmJmIjoxNzczNTA3MzM3LCJodHRwczovL2lkLmF0bGFzc2lhbi5jb20vYXBwQWNjcmVkaXRlZCI6ZmFsc2V9.T0wguqYX3efgEomIEPZBNpPVrf8qFBqgL6-4909ys0o","__typename":"EmbeddedMediaToken"},"$Content:1595637714.body.atlas_doc_format":{"mediaToken":{"type":"id","generated":true,"id":"$Content:1595637714.body.atlas_doc_format.mediaToken","typename":"EmbeddedMediaToken"},"__typename":"ContentBody"},"$Content:1595637714.body":{"atlas_doc_format":{"type":"id","generated":true,"id":"$Content:1595637714.body.atlas_doc_format","typename":"ContentBody"},"__typename":"ContentBodyPerRepresentation","dynamic":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic","typename":"ContentBody"}},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"current\",\"draft\",\"archived\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$ROOT_QUERY.mediaConfiguration":{"clientId":"005d26dc-ded4-4dc7-b9d8-5cbe68716901","fileStoreUrl":"https:\u002F\u002Fapi.media.atlassian.com","__typename":"MediaConfiguration"},"$Space:1593966486.settings.customHeaderAndFooter.header":{"html":"","js":{"type":"json","json":[]},"css":"","spaUnfriendlyMacros":[],"__typename":"HtmlMeta"},"$Space:1593966486.settings.customHeaderAndFooter":{"header":{"type":"id","generated":true,"id":"$Space:1593966486.settings.customHeaderAndFooter.header","typename":"HtmlMeta"},"footer":{"type":"id","generated":true,"id":"$Space:1593966486.settings.customHeaderAndFooter.footer","typename":"HtmlMeta"},"__typename":"SpaceSettingsMetadata"},"$Space:1593966486.settings.customHeaderAndFooter.footer":{"html":"","js":{"type":"json","json":[]},"css":"","spaUnfriendlyMacros":[],"__typename":"HtmlMeta"},"$ROOT_QUERY.dataSecurityPolicy.isActionEnabledForContent({\"action\":\"ATTACHMENT_DOWNLOAD\",\"contentId\":\"1595637714\",\"contentStatus\":\"CURRENT\",\"contentVersion\":1,\"spaceKey\":\"XPOL\"})":{"action":"ATTACHMENT_DOWNLOAD","allowed":true,"__typename":"DataSecurityPolicyDecision"},"$ROOT_QUERY.dataSecurityPolicy":{"isActionEnabledForContent({\"action\":\"ATTACHMENT_DOWNLOAD\",\"contentId\":\"1595637714\",\"contentStatus\":\"CURRENT\",\"contentVersion\":1,\"spaceKey\":\"XPOL\"})":{"type":"id","generated":true,"id":"$ROOT_QUERY.dataSecurityPolicy.isActionEnabledForContent({\"action\":\"ATTACHMENT_DOWNLOAD\",\"contentId\":\"1595637714\",\"contentStatus\":\"CURRENT\",\"contentVersion\":1,\"spaceKey\":\"XPOL\"})","typename":"DataSecurityPolicyDecision"},"__typename":"Confluence_dataSecurityPolicy"},"$ROOT_QUERY.spaceSidebarLinks({\"spaceKey\":\"XPOL\"})":{"__typename":"SpaceSidebarLinks","quick":[],"main({\"includeHidden\":true})":[{"type":"id","generated":false,"id":"SpaceSidebarLink:107","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:108","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:109","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:262","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:282","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:318","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:319","typename":"SpaceSidebarLink"},{"type":"id","generated":false,"id":"SpaceSidebarLink:273","typename":"SpaceSidebarLink"}]},"SpaceSidebarLink:107":{"id":"107","webItemKey":"spacebar-pages","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-pages","title":"Pages","url":"\u002Fwiki\u002Fcollector\u002Fpages.action?key=XPOL","position":1,"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-blogs","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-blogs","title":"Blog","url":"\u002Fwiki\u002Fpages\u002Fviewrecentblogposts.action?key=XPOL","position":2,"styleClass":"blog","icon":null,"iconClass":null,"hidden":true,"canHide":true,"tooltip":"Blog","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:109":{"id":"109","webItemKey":"space-navigation-web-item-com-mxgraph-confluence-plugins-diagramly-drawio-diagram","webItemCompleteKey":"com.atlassian.plugins.atlassian-connect-plugin:space-navigation-web-item-com-mxgraph-confluence-plugins-diagramly-drawio-diagram","title":"draw.io Diagrams","url":"\u002Fwiki\u002Fdisplay\u002FXPOL\u002Fcustomcontent\u002Flist\u002Fac%3Acom.mxgraph.confluence.plugins.diagramly%3Adrawio-diagram","position":4,"styleClass":"icon-link-content-type-com-mxgraph-confluence-plugins-diagramly-drawio-diagram com.mxgraph.confluence.plugins.diagramly:drawio-diagram","icon":{"type":"id","generated":true,"id":"$SpaceSidebarLink:109.icon","typename":"Icon"},"iconClass":null,"hidden":true,"canHide":true,"tooltip":"draw.io Diagrams","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"$SpaceSidebarLink:109.icon":{"path":"https:\u002F\u002Fac.draw.io\u002Fimages\u002Fdrawlogo48.png","width":16,"height":16,"isDefault":false,"__typename":"Icon"},"SpaceSidebarLink:262":{"id":"262","webItemKey":"spacebar-automation","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-automation","title":"Automation","url":"\u002Fwiki\u002Fspaces\u002FXPOL\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:282":{"id":"282","webItemKey":"spacebar-databases","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-databases","title":"Databases","url":"\u002Fwiki\u002Fdisplay\u002FXPOL\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:318":{"id":"318","webItemKey":"spacebar-apps","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-apps","title":"Apps","url":"\u002Fwiki\u002Fspaces\u002FXPOL\u002Fapps","position":30,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Apps","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:319":{"id":"319","webItemKey":"spacebar-shortcuts","webItemCompleteKey":"com.atlassian.confluence.plugins.confluence-space-ia:spacebar-shortcuts","title":"Shortcuts","url":"\u002Fwiki\u002Fspaces\u002FXPOL\u002Fshortcuts","position":36,"styleClass":"","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Shortcuts","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"SpaceSidebarLink:273":{"id":"273","webItemKey":"space-calendar-sidebar-link","webItemCompleteKey":"com.atlassian.confluence.extra.team-calendars:space-calendar-sidebar-link","title":"Calendars","url":"\u002Fwiki\u002Fdisplay\u002FXPOL\u002Fcalendars","position":44,"styleClass":"space-calendar-sidebar-link","icon":null,"iconClass":null,"hidden":false,"canHide":true,"tooltip":"Calendars","linkIdentifier":null,"type":"WEB_ITEM","__typename":"SpaceSidebarLink"},"$Space:1593966486.history":{"createdDate":"2012-07-05T07:29:24.000Z","__typename":"SpaceHistory"},"PTPage:1595637714":{"id":"1595637714","title":"XpoLog Regular Expressions Patterns Language","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1595637714.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1595637714.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1595637714.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"nearestAncestors":{"type":"id","generated":true,"id":"$PTPage:1595637714.nearestAncestors","typename":"PTPaginatedPageList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1595637714.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1595637714.followingSiblings","typename":"PTPaginatedPageList"},"children":{"type":"id","generated":true,"id":"$PTPage:1595637714.children","typename":"PTPaginatedPageList"},"__typename":"PTPage","nearestAncestors({\"first\":1})":{"type":"id","generated":true,"id":"$PTPage:1595637714.nearestAncestors({\"first\":1})","typename":"PTPaginatedPageList"}},"$PTPage:1595637714.createdDate({\"format\":\"MILLIS\"})":{"value":"1392870463000","__typename":"ConfluenceDate"},"$PTPage:1595637714.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1595637714\u002FXpoLog+Regular+Expressions+Patterns+Language","__typename":"Map_LinkType_String"},"$PTPage:1595637714.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1595637714.nearestAncestors.pageInfo":{"hasNextPage":false,"endCursor":"4","__typename":"PTPageInfo"},"$PTPage:1595637714.nearestAncestors":{"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1595637714.nearestAncestors.pageInfo","typename":"PTPageInfo"},"nodes":[{"type":"id","generated":false,"id":"PTPage:1594131792","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131765","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132021","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1593933721","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1593933719","typename":"PTPage"}],"__typename":"PTPaginatedPageList"},"PTPage:1594131792":{"id":"1594131792","title":"XPLG Patterns Language","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131792.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131792.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131792.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1594131792.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1594131792.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1594131792.createdDate({\"format\":\"MILLIS\"})":{"value":"1356965607000","__typename":"ConfluenceDate"},"$PTPage:1594131792.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131792\u002FXPLG+Patterns+Language","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594131792":{"id":"P1594131792","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594131792.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594131792","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132659":{"id":"1594132659","title":"Editing a Log Definition","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132659.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132659.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132659.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132659.createdDate({\"format\":\"MILLIS\"})":{"value":"1361269584000","__typename":"ConfluenceDate"},"$PTPage:1594132659.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132659\u002FEditing+a+Log+Definition","__typename":"Map_LinkType_String"},"$PTPage:1594132659.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132604":{"id":"1594132604","title":"Verifying Added Log Configuration","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132604.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132604.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132604.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132604.createdDate({\"format\":\"MILLIS\"})":{"value":"1361162027000","__typename":"ConfluenceDate"},"$PTPage:1594132604.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132604\u002FVerifying+Added+Log+Configuration","__typename":"Map_LinkType_String"},"$PTPage:1594132604.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1595637847":{"id":"1595637847","title":"XPLG Data Listeners","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1595637847.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1595637847.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1595637847.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1595637847.createdDate({\"format\":\"MILLIS\"})":{"value":"1399541724000","__typename":"ConfluenceDate"},"$PTPage:1595637847.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1595637847\u002FXPLG+Data+Listeners","__typename":"Map_LinkType_String"},"$PTPage:1595637847.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1599143868":{"id":"1599143868","title":"Add data using Filebeat and Logstash","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1599143868.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1599143868.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1599143868.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1599143868.createdDate({\"format\":\"MILLIS\"})":{"value":"1469703577744","__typename":"ConfluenceDate"},"$PTPage:1599143868.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1599143868\u002FAdd+data+using+Filebeat+and+Logstash","__typename":"Map_LinkType_String"},"JsonContentProperty:P1599143868":{"id":"P1599143868","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1599143868.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1599143868","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1919418369":{"id":"1919418369","title":"Add Data using Fluent-Bit","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1919418369.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1919418369.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1919418369.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1919418369.createdDate({\"format\":\"MILLIS\"})":{"value":"1717575163747","__typename":"ConfluenceDate"},"$PTPage:1919418369.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1919418369\u002FAdd+Data+using+Fluent-Bit","__typename":"Map_LinkType_String"},"JsonContentProperty:P1919418369":{"id":"P1919418369","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1919418369.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1919418369","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:2399535175":{"id":"2399535175","title":"Add Data from Kubernetes \u002F OpenShift","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:2399535175.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:2399535175.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:2399535175.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:2399535175.createdDate({\"format\":\"MILLIS\"})":{"value":"1751374585737","__typename":"ConfluenceDate"},"$PTPage:2399535175.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F2399535175\u002FAdd+Data+from+Kubernetes+OpenShift","__typename":"Map_LinkType_String"},"JsonContentProperty:P2399535175":{"id":"P2399535175","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:2399535175.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P2399535175","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594131778":{"id":"1594131778","title":"Adding a Logs Directory to XPLG","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131778.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131778.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131778.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594131778.createdDate({\"format\":\"MILLIS\"})":{"value":"1356599717000","__typename":"ConfluenceDate"},"$PTPage:1594131778.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131778\u002FAdding+a+Logs+Directory+to+XPLG","__typename":"Map_LinkType_String"},"$PTPage:1594131778.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594131767":{"id":"1594131767","title":"Adding Data to XPLG","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131767.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131767.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131767.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594131767.createdDate({\"format\":\"MILLIS\"})":{"value":"1356511433000","__typename":"ConfluenceDate"},"$PTPage:1594131767.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131767\u002FAdding+Data+to+XPLG","__typename":"Map_LinkType_String"},"$PTPage:1594131767.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1599572424":{"id":"1599572424","title":"Add Data by System","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1599572424.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1599572424.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1599572424.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1599572424.createdDate({\"format\":\"MILLIS\"})":{"value":"1525252652514","__typename":"ConfluenceDate"},"$PTPage:1599572424.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1599572424\u002FAdd+Data+by+System","__typename":"Map_LinkType_String"},"$PTPage:1599572424.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1594131792.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1594132659","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132604","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1595637847","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1599143868","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1919418369","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:2399535175","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131778","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131767","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1599572424","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1594131792.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1594131792.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$PTPage:1594131792.followingSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1594131792.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1594131792.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1594131765":{"id":"1594131765","title":"Adding Data","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131765.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131765.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131765.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1594131765.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1594131765.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1594131765.createdDate({\"format\":\"MILLIS\"})":{"value":"1356510390000","__typename":"ConfluenceDate"},"$PTPage:1594131765.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131765\u002FAdding+Data","__typename":"Map_LinkType_String"},"$PTPage:1594131765.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1594131765.previousSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1594131765.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1594131765.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1594132976":{"id":"1594132976","title":"Defining a Log Collection Policy","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132976.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132976.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132976.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132976.createdDate({\"format\":\"MILLIS\"})":{"value":"1363008510000","__typename":"ConfluenceDate"},"$PTPage:1594132976.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132976\u002FDefining+a+Log+Collection+Policy","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594132976":{"id":"P1594132976","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594132976.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594132976","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1627684872":{"id":"1627684872","title":"Defining a Data Forwarder","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1627684872.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1627684872.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1627684872.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1627684872.createdDate({\"format\":\"MILLIS\"})":{"value":"1644843372327","__typename":"ConfluenceDate"},"$PTPage:1627684872.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1627684872\u002FDefining+a+Data+Forwarder","__typename":"Map_LinkType_String"},"JsonContentProperty:P1627684872":{"id":"P1627684872","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1627684872.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1627684872","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133706":{"id":"1594133706","title":"Monitors Administration","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133706.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133706.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133706.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133706.createdDate({\"format\":\"MILLIS\"})":{"value":"1368441611000","__typename":"ConfluenceDate"},"$PTPage:1594133706.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133706\u002FMonitors+Administration","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594133706":{"id":"P1594133706","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594133706.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594133706","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132971":{"id":"1594132971","title":"Management Console for Cloud Accounts","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132971.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132971.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132971.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132971.createdDate({\"format\":\"MILLIS\"})":{"value":"1362997971000","__typename":"ConfluenceDate"},"$PTPage:1594132971.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132971\u002FManagement+Console+for+Cloud+Accounts","__typename":"Map_LinkType_String"},"$PTPage:1594132971.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132630":{"id":"1594132630","title":"AppTags","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132630.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132630.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132630.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132630.createdDate({\"format\":\"MILLIS\"})":{"value":"1361176282000","__typename":"ConfluenceDate"},"$PTPage:1594132630.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132630\u002FAppTags","__typename":"Map_LinkType_String"},"$PTPage:1594132630.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132386":{"id":"1594132386","title":"Address Book (Accounts)","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132386.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132386.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132386.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132386.createdDate({\"format\":\"MILLIS\"})":{"value":"1359963731000","__typename":"ConfluenceDate"},"$PTPage:1594132386.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132386\u002FAddress+Book+Accounts","__typename":"Map_LinkType_String"},"$PTPage:1594132386.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133005":{"id":"1594133005","title":"Patterns (Templates)","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133005.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133005.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133005.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133005.createdDate({\"format\":\"MILLIS\"})":{"value":"1363066355000","__typename":"ConfluenceDate"},"$PTPage:1594133005.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133005\u002FPatterns+Templates","__typename":"Map_LinkType_String"},"$PTPage:1594133005.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:2199027716":{"id":"2199027716","title":"Flux - Data Sync Platform","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:2199027716.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:2199027716.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:2199027716.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:2199027716.createdDate({\"format\":\"MILLIS\"})":{"value":"1737990213084","__typename":"ConfluenceDate"},"$PTPage:2199027716.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F2199027716\u002FFlux+-+Data+Sync+Platform","__typename":"Map_LinkType_String"},"JsonContentProperty:P2199027716":{"id":"P2199027716","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:2199027716.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P2199027716","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133057":{"id":"1594133057","title":"Tasks","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133057.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133057.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133057.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133057.createdDate({\"format\":\"MILLIS\"})":{"value":"1363235581000","__typename":"ConfluenceDate"},"$PTPage:1594133057.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133057\u002FTasks","__typename":"Map_LinkType_String"},"$PTPage:1594133057.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133272":{"id":"1594133272","title":"System & Settings","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133272.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133272.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133272.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133272.createdDate({\"format\":\"MILLIS\"})":{"value":"1366256623000","__typename":"ConfluenceDate"},"$PTPage:1594133272.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133272\u002FSystem+Settings","__typename":"Map_LinkType_String"},"$PTPage:1594133272.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133408":{"id":"1594133408","title":"Security","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133408.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133408.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133408.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133408.createdDate({\"format\":\"MILLIS\"})":{"value":"1367301440000","__typename":"ConfluenceDate"},"$PTPage:1594133408.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133408\u002FSecurity","__typename":"Map_LinkType_String"},"$PTPage:1594133408.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133714":{"id":"1594133714","title":"Search Administration","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133714.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133714.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133714.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133714.createdDate({\"format\":\"MILLIS\"})":{"value":"1368443431000","__typename":"ConfluenceDate"},"$PTPage:1594133714.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133714\u002FSearch+Administration","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594133714":{"id":"P1594133714","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594133714.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594133714","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133717":{"id":"1594133717","title":"Analytics Administration","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133717.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133717.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133717.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133717.createdDate({\"format\":\"MILLIS\"})":{"value":"1368443786000","__typename":"ConfluenceDate"},"$PTPage:1594133717.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133717\u002FAnalytics+Administration","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594133717":{"id":"P1594133717","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594133717.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594133717","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1597539102":{"id":"1597539102","title":"Apps Administration","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1597539102.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1597539102.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1597539102.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1597539102.createdDate({\"format\":\"MILLIS\"})":{"value":"1432133388000","__typename":"ConfluenceDate"},"$PTPage:1597539102.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1597539102\u002FApps+Administration","__typename":"Map_LinkType_String"},"JsonContentProperty:P1597539102":{"id":"P1597539102","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1597539102.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1597539102","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594133053":{"id":"1594133053","title":"Importing\u002FExporting a Log\u002FFolder","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594133053.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594133053.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594133053.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594133053.createdDate({\"format\":\"MILLIS\"})":{"value":"1363087339000","__typename":"ConfluenceDate"},"$PTPage:1594133053.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594133053\u002FImporting+Exporting+a+Log+Folder","__typename":"Map_LinkType_String"},"$PTPage:1594133053.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1597014014":{"id":"1597014014","title":"XPLG API \u002F SDK","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1597014014.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1597014014.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1597014014.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1597014014.createdDate({\"format\":\"MILLIS\"})":{"value":"1416825197000","__typename":"ConfluenceDate"},"$PTPage:1597014014.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1597014014\u002FXPLG+API+SDK","__typename":"Map_LinkType_String"},"$PTPage:1597014014.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1598685530":{"id":"1598685530","title":"Batch Configuration","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1598685530.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1598685530.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1598685530.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1598685530.createdDate({\"format\":\"MILLIS\"})":{"value":"1465304064345","__typename":"ConfluenceDate"},"$PTPage:1598685530.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1598685530\u002FBatch+Configuration","__typename":"Map_LinkType_String"},"$PTPage:1598685530.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1599570438":{"id":"1599570438","title":"Geo Redundancy","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1599570438.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1599570438.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1599570438.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1599570438.createdDate({\"format\":\"MILLIS\"})":{"value":"1497783389993","__typename":"ConfluenceDate"},"$PTPage:1599570438.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1599570438\u002FGeo+Redundancy","__typename":"Map_LinkType_String"},"$PTPage:1599570438.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1594131765.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1594132976","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1627684872","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133706","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132971","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132630","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132386","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133005","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:2199027716","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133057","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133272","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133408","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133714","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133717","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597539102","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594133053","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014014","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1598685530","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1599570438","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1594131765.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1594131765.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1594132021":{"id":"1594132021","title":"Administrator Guide","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132021.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132021.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132021.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1594132021.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1594132021.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1594132021.createdDate({\"format\":\"MILLIS\"})":{"value":"1358398238000","__typename":"ConfluenceDate"},"$PTPage:1594132021.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132021\u002FAdministrator+Guide","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594132021":{"id":"P1594132021","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594132021.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594132021","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1595637899":{"id":"1595637899","title":"Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1595637899.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1595637899.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1595637899.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1595637899.createdDate({\"format\":\"MILLIS\"})":{"value":"1399968083000","__typename":"ConfluenceDate"},"$PTPage:1595637899.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1595637899\u002FRelease+Notes","__typename":"Map_LinkType_String"},"JsonContentProperty:P1595637899":{"id":"P1595637899","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1595637899.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1595637899","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132392":{"id":"1594132392","title":"Plan a Deployment","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132392.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132392.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132392.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132392.createdDate({\"format\":\"MILLIS\"})":{"value":"1359969366000","__typename":"ConfluenceDate"},"$PTPage:1594132392.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132392\u002FPlan+a+Deployment","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594132392":{"id":"P1594132392","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594132392.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594132392","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594131308":{"id":"1594131308","title":"Introduction","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131308.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131308.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131308.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594131308.createdDate({\"format\":\"MILLIS\"})":{"value":"1353113022000","__typename":"ConfluenceDate"},"$PTPage:1594131308.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131308\u002FIntroduction","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594131308":{"id":"P1594131308","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594131308.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594131308","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1594132021.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1595637899","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132392","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131308","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1594132021.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1594132021.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1594132023":{"id":"1594132023","title":"User Guide","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132023.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132023.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132023.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132023.createdDate({\"format\":\"MILLIS\"})":{"value":"1358398275000","__typename":"ConfluenceDate"},"$PTPage:1594132023.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132023\u002FUser+Guide","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594132023":{"id":"P1594132023","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594132023.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594132023","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594132936":{"id":"1594132936","title":"Troubleshooting XPLG","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594132936.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594132936.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594132936.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594132936.createdDate({\"format\":\"MILLIS\"})":{"value":"1362565925000","__typename":"ConfluenceDate"},"$PTPage:1594132936.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594132936\u002FTroubleshooting+XPLG","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594132936":{"id":"P1594132936","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594132936.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594132936","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594131984":{"id":"1594131984","title":"Getting Started","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131984.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131984.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131984.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594131984.createdDate({\"format\":\"MILLIS\"})":{"value":"1358075535000","__typename":"ConfluenceDate"},"$PTPage:1594131984.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131984\u002FGetting+Started","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594131984":{"id":"P1594131984","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594131984.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594131984","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594131939":{"id":"1594131939","title":"Getting Assistance","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131939.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131939.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131939.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594131939.createdDate({\"format\":\"MILLIS\"})":{"value":"1358061409000","__typename":"ConfluenceDate"},"$PTPage:1594131939.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131939\u002FGetting+Assistance","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594131939":{"id":"P1594131939","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594131939.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594131939","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1594131328":{"id":"1594131328","title":"About this Help","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1594131328.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1594131328.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1594131328.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1594131328.createdDate({\"format\":\"MILLIS\"})":{"value":"1353121506000","__typename":"ConfluenceDate"},"$PTPage:1594131328.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1594131328\u002FAbout+this+Help","__typename":"Map_LinkType_String"},"JsonContentProperty:P1594131328":{"id":"P1594131328","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1594131328.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1594131328","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1602191502":{"id":"1602191502","title":"XPLG Tutorial","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1602191502.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1602191502.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1602191502.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1602191502.createdDate({\"format\":\"MILLIS\"})":{"value":"1567430718834","__typename":"ConfluenceDate"},"$PTPage:1602191502.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1602191502\u002FXPLG+Tutorial","__typename":"Map_LinkType_String"},"JsonContentProperty:P1602191502":{"id":"P1602191502","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1602191502.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1602191502","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1594132021.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1594132023","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594132936","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131984","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131939","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1594131328","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1602191502","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1594132021.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1594132021.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1593933721":{"id":"1593933721","title":"Overview","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1593933721.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1593933721.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1593933721.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1593933721.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1593933721.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1593933721.createdDate({\"format\":\"MILLIS\"})":{"value":"1341474064000","__typename":"ConfluenceDate"},"$PTPage:1593933721.links":{"webui":"\u002Fspaces\u002FXPOL\u002Foverview","__typename":"Map_LinkType_String"},"JsonContentProperty:P1593933721":{"id":"P1593933721","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1593933721.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1593933721","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1593933721.previousSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1593933721.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1593933721.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$PTPage:1593933721.followingSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1593933721.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1593933721.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1593933719":{"id":"1593933719","title":"XPLG Home","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1593933719.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1593933719.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1593933719.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"previousSiblings":{"type":"id","generated":true,"id":"$PTPage:1593933719.previousSiblings","typename":"PTPaginatedPageList"},"followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1593933719.followingSiblings","typename":"PTPaginatedPageList"},"__typename":"PTPage"},"$PTPage:1593933719.createdDate({\"format\":\"MILLIS\"})":{"value":"1341473364000","__typename":"ConfluenceDate"},"$PTPage:1593933719.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1593933719\u002FXPLG+Home","__typename":"Map_LinkType_String"},"JsonContentProperty:P1593933719":{"id":"P1593933719","key":"editor","value":"\"v2\"","version":null,"__typename":"JsonContentProperty"},"$PTPage:1593933719.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1593933719","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1599143997":{"id":"1599143997","title":"XpoLog 6 - Open Source","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1599143997.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1599143997.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1599143997.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1599143997.createdDate({\"format\":\"MILLIS\"})":{"value":"1476015803385","__typename":"ConfluenceDate"},"$PTPage:1599143997.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1599143997\u002FXpoLog+6+-+Open+Source","__typename":"Map_LinkType_String"},"$PTPage:1599143997.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1597014404":{"id":"1597014404","title":"5.0.4021 Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1597014404.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1597014404.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1597014404.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1597014404.createdDate({\"format\":\"MILLIS\"})":{"value":"1430026794000","__typename":"ConfluenceDate"},"$PTPage:1597014404.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1597014404\u002F5.0.4021+Release+Notes","__typename":"Map_LinkType_String"},"$PTPage:1597014404.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1597014359":{"id":"1597014359","title":"5.0.4019 Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1597014359.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1597014359.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1597014359.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1597014359.createdDate({\"format\":\"MILLIS\"})":{"value":"1426151277000","__typename":"ConfluenceDate"},"$PTPage:1597014359.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1597014359\u002F5.0.4019+Release+Notes","__typename":"Map_LinkType_String"},"$PTPage:1597014359.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1597014291":{"id":"1597014291","title":"5.0.4018 Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1597014291.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1597014291.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1597014291.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1597014291.createdDate({\"format\":\"MILLIS\"})":{"value":"1422867847000","__typename":"ConfluenceDate"},"$PTPage:1597014291.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1597014291\u002F5.0.4018+Release+Notes","__typename":"Map_LinkType_String"},"$PTPage:1597014291.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1597014027":{"id":"1597014027","title":"5.0.4014 Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1597014027.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1597014027.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1597014027.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1597014027.createdDate({\"format\":\"MILLIS\"})":{"value":"1416841912000","__typename":"ConfluenceDate"},"$PTPage:1597014027.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1597014027\u002F5.0.4014+Release+Notes","__typename":"Map_LinkType_String"},"$PTPage:1597014027.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1595408471":{"id":"1595408471","title":"4.5.3720 Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1595408471.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1595408471.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1595408471.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1595408471.createdDate({\"format\":\"MILLIS\"})":{"value":"1389774452000","__typename":"ConfluenceDate"},"$PTPage:1595408471.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1595408471\u002F4.5.3720+Release+Notes","__typename":"Map_LinkType_String"},"$PTPage:1595408471.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"PTPage:1595408434":{"id":"1595408434","title":"4.5.3714 Release Notes","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1595408434.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1595408434.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1595408434.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage","followingSiblings":{"type":"id","generated":true,"id":"$PTPage:1595408434.followingSiblings","typename":"PTPaginatedPageList"}},"$PTPage:1595408434.createdDate({\"format\":\"MILLIS\"})":{"value":"1388030058000","__typename":"ConfluenceDate"},"$PTPage:1595408434.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1595408434\u002F4.5.3714+Release+Notes","__typename":"Map_LinkType_String"},"$PTPage:1595408434.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1593933719.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1599143997","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014404","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014359","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014291","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014027","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1595408471","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1595408434","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1593933719.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1593933719.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$PTPage:1593933719.followingSiblings":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1593933719.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1593933719.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1602191926":{"id":"1602191926","title":"Files Name Patterns","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1602191926.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":false,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1602191926.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1602191926.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1602191926.createdDate({\"format\":\"MILLIS\"})":{"value":"1588744287442","__typename":"ConfluenceDate"},"$PTPage:1602191926.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1602191926\u002FFiles+Name+Patterns","__typename":"Map_LinkType_String"},"$PTPage:1602191926.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1595637714.previousSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1602191926","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1595637714.previousSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1595637714.previousSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"PTPage:1596391403":{"id":"1596391403","title":"Patterns Knowledgebase","status":"CURRENT","createdDate({\"format\":\"MILLIS\"})":{"type":"id","generated":true,"id":"$PTPage:1596391403.createdDate({\"format\":\"MILLIS\"})","typename":"ConfluenceDate"},"hasChildren":true,"blank":false,"type":"page","subType":null,"links":{"type":"id","generated":true,"id":"$PTPage:1596391403.links","typename":"Map_LinkType_String"},"properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"type":"id","generated":true,"id":"$PTPage:1596391403.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})","typename":"PaginatedJsonContentPropertyList"},"__typename":"PTPage"},"$PTPage:1596391403.createdDate({\"format\":\"MILLIS\"})":{"value":"1410334438000","__typename":"ConfluenceDate"},"$PTPage:1596391403.links":{"webui":"\u002Fspaces\u002FXPOL\u002Fpages\u002F1596391403\u002FPatterns+Knowledgebase","__typename":"Map_LinkType_String"},"$PTPage:1596391403.properties({\"keys\":[\"emoji-title-published\",\"emoji-title-draft\",\"editor\"]})":{"nodes":[],"__typename":"PaginatedJsonContentPropertyList"},"$PTPage:1595637714.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1596391403","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1595637714.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1595637714.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$PTPage:1595637714.children":{"nodes":[],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1595637714.children.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1595637714.children.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$PTPage:1595408434.followingSiblings":{"nodes":[{"type":"id","generated":false,"id":"PTPage:1595408471","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014027","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014291","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014359","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1597014404","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1599143997","typename":"PTPage"},{"type":"id","generated":false,"id":"PTPage:1593933719","typename":"PTPage"}],"pageInfo":{"type":"id","generated":true,"id":"$PTPage:1595408434.followingSiblings.pageInfo","typename":"PTPageInfo"},"__typename":"PTPaginatedPageList"},"$PTPage:1595408434.followingSiblings.pageInfo":{"hasNextPage":false,"__typename":"PTPageInfo"},"$ROOT_QUERY.contentAnalyticsViewers({\"contentId\":\"1595637714\"})":{"count":18,"__typename":"ContentAnalyticsViewers"},"$PTPage:1595637714.nearestAncestors({\"first\":1}).edges.0":{"node":{"type":"id","generated":false,"id":"PTPage:1594131792","typename":"PTPage"},"__typename":"PTPageEdge"},"$PTPage:1595637714.nearestAncestors({\"first\":1})":{"edges":[{"type":"id","generated":true,"id":"$PTPage:1595637714.nearestAncestors({\"first\":1}).edges.0","typename":"PTPageEdge"}],"__typename":"PTPaginatedPageList"},"$ROOT_QUERY.contentSmartLinks({\"id\":\"1595637714\"})":{"nodes":[],"__typename":"PaginatedSmartLinkList"},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"current\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"ROOT_QUERY.webPanels({\"contentId\":\"1595637714\",\"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.confluence_teamPresenceContentSetting({\"cloudId\":\"ba59c560-d40a-4f26-901d-760291a417f8\",\"spaceKey\":\"XPOL\"})":{"isEnabledOnContentView":true,"__typename":"ConfluenceTeamPresence"},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"status\":[\"draft\",\"current\"]})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Content:1595637714.contentProperties.draft":{"generatedBy":null,"__typename":"DraftContentProperties"},"$Content:1595637714.properties({\"keys\":[\"cover-picture-id-published\",\"emoji-title-published\",\"editor\",\"import-source\",\"imported-page-modified-date\"]})":{"nodes":[{"type":"id","generated":false,"id":"JsonContentProperty:P1595637714","typename":"JsonContentProperty"}],"__typename":"PaginatedJsonContentPropertyList"},"$Content:1595637714.body.dynamic":{"representation":"atlas_doc_format","value":"{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"As part of XpoLog parsing language, users may apply a regular expression on another column in order to extract a specific value from that column.\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Regular expressions language\",\"type\":\"text\",\"marks\":[{\"type\":\"underline\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}},{\"type\":\"strong\"}]},{\"text\":\":\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}},{\"type\":\"strong\"}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Characters \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}},{\"type\":\"strong\"}]},{\"type\":\"hardBreak\"},{\"text\":\"x The character x \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\\\\\ The backslash character \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\0n The character with octal value 0n (0 \u003C= n \u003C= 7) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\0nn The character with octal value 0nn (0 \u003C= n \u003C= 7) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\0mnn The character with octal value 0mnn (0 \u003C= m \u003C= 3, 0 \u003C= n \u003C= 7) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\xhh The character with hexadecimal value 0xhh \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\uhhhh The character with hexadecimal value 0xhhhh \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\t The tab character ('\\\\u0009') \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\n The newline (line feed) character ('\\\\u000A') \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\r The carriage-return character ('\\\\u000D') \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\f The form-feed character ('\\\\u000C') \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\a The alert (bell) character ('\\\\u0007') \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\e The escape character ('\\\\u001B') \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\cx The control character corresponding to x \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Character classes\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[abc] a, b, or c (simple class) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[^abc] Any character except a, b, or c (negation) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[a-zA-Z] a through z or A through Z, inclusive (range) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[a-d[m-p]] a through d, or m through p: [a-dm-p] (union) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[a-z&&[def]] d, e, or f (intersection) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[a-z&&[^bc]] a through z, except for b and c: [ad-z] (subtraction) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[a-z&&[^m-p]] a through z, and not m through p: [a-lq-z](subtraction) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Predefined character classes\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\". Any character (may or may not match line terminators) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\d A digit: [0-9] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\D A non-digit: [^0-9] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\s A whitespace character: [ \\\\t\\\\n\\\\x0B\\\\f\\\\r] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\S A non-whitespace character: [^\\\\s] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\w A word character: [a-zA-Z_0-9] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\W A non-word character: [^\\\\w] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"POSIX character classes (US-ASCII only)\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Lower} A lower-case alphabetic character: [a-z] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Upper} An upper-case alphabetic character:[A-Z] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{ASCII} All ASCII:[\\\\x00-\\\\x7F] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Alpha} An alphabetic character:[\\\\p{Lower}\\\\p{Upper}] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Digit} A decimal digit: [0-9] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Alnum} An alphanumeric character:[\\\\p{Alpha}\\\\p{Digit}] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Punct} Punctuation: One of !\\\"#$%&'()*+,-.\u002F:;\u003C=\u003E?@[\\\\]^_`{|}~ \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Graph} A visible character: [\\\\p{Alnum}\\\\p{Punct}] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Print} A printable character: [\\\\p{Graph}] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Blank} A space or a tab: [ \\\\t] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Cntrl} A control character: [\\\\x00-\\\\x1F\\\\x7F] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{XDigit} A hexadecimal digit: [0-9a-fA-F] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Space} A whitespace character: [ \\\\t\\\\n\\\\x0B\\\\f\\\\r] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Classes for Unicode blocks and categories\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{InGreek} A character in the Greek block (simple block) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Lu} An uppercase letter (simple category) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\p{Sc} A currency symbol \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\P{InGreek} Any character except one in the Greek block (negation) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"[\\\\p{L}&&[^\\\\p{Lu}]] Any letter except an uppercase letter (subtraction) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Boundary matchers\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"^ The beginning of a line \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"$ The end of a line \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\b A word boundary \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\B A non-word boundary \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\A The beginning of the input \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\G The end of the previous match \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\Z The end of the input but for the final terminator, if any \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\z The end of the input \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Greedy quantifiers\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"? any character, once or not at all \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"* any character, zero or more times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"+ any character, one or more times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n} X, exactly n times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n,} X, at least n times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n,m} X, at least n but not more than m times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Reluctant quantifiers\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"?? any character, once or not at all \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"*? any character, zero or more times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"+? any character, one or more times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n}? X, exactly n times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n,}? X, at least n times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n,m}? X, at least n but not more than m times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Possessive quantifiers\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"?+ any character, once or not at all \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"*+ any character, zero or more times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"++ any character, one or more times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n}+ X, exactly n times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n,}+ X, at least n times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X{n,m}+ X, at least n but not more than m times \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Logical operators\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"XY X followed by Y \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"X|Y Either X or Y \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(X) X, as a capturing group \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Back references\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\n Whatever the nth capturing group matched \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Quotation\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\ Nothing, but quotes the following character \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\Q Nothing, but quotes all characters until \\\\E \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"\\\\E Nothing, but ends quoting started by \\\\Q \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Special constructs (non-capturing) \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}},{\"type\":\"strong\"}]},{\"type\":\"hardBreak\"},{\"text\":\"(?:X) X, as a non-capturing group \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(?idmsux-idmsux) Nothing, but turns match flags on - off \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(?idmsux-idmsux:X) X, as a non-capturing group with the given flags on - off \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(?=X) X, via zero-width positive lookahead \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(?!X) X, via zero-width negative lookahead \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(?\u003C=X) X, via zero-width positive lookbehind \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"(?\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" (?\u003EX) X, as an independent, non-capturing group \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"--------------------------------------------------------------------------------\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Backslashes, escapes, and quoting\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"The backslash character ('\\\\') serves to introduce escaped constructs, as defined above, as well as to quote characters that otherwise would be interpreted as un-escaped constructs. Thus the expression \\\\\\\\ matches a single backslash. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"One special case is right\u002Fleft curly brackets since a curly bracket is used by XpoLog pattern syntax as a reserved sign to open\u002Fclose field tags. To represent curly bracket which are not XpoLog reserved use: \\\\u007B (left curly bracket) and \\\\u007D (right curly bracket).\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"It is an error to use a backslash prior to any alphabetic character that does not denote an escaped construct; these are reserved for future extensions to the regular-expression language. A backslash may be used prior to a non-alphabetic character regardless of whether that character is part of an un-escaped construct. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Character Classes\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"Character classes may appear within other character classes, and may be composed by the union operator (implicit) and the intersection operator (&&). The union operator denotes a class that contains every character that is in at least one of its operand classes. The intersection operator denotes a class that contains every character that is in both of its operand classes. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"The precedence of character-class operators is as follows, from highest to lowest: \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"1 Literal escape \\\\x \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"2 Grouping [...] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"3 Range a-z \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"4 Union [a-e][i-u] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"5 Intersection [a-z&&[aeiou]] \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Note that a different set of metacharacters are in effect inside a character class than outside a character class. For instance, the regular expression . loses its special meaning inside a character class, while the expression - becomes a range forming metacharacter. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Line terminators\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"A line terminator is a one- or two-character sequence that marks the end of a line of the input character sequence. The following are recognized as line terminators: \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"A newline (line feed) character ('\\\\n'), \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"A carriage-return character followed immediately by a newline character (\\\"\\\\r\\\\n\\\"), \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"A standalone carriage-return character ('\\\\r'), \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"A next-line character ('\\\\u0085'), \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"A line-separator character ('\\\\u2028'), or \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"A paragraph-separator character ('\\\\u2029). \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"If UNIX_LINES mode is activated, then the only line terminators recognized are newline characters. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"The regular expression . matches any character except a line terminator unless the DOTALL flag is specified. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"By default, the regular expressions ^ and $ ignore line terminators and only match at the beginning and the end, respectively, of the entire input sequence. If MULTILINE mode is activated then ^ matches at the beginning of input and after any line terminator except at the end of input. When in MULTILINE mode $ matches just before a line terminator or the end of the input sequence. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"For a more precise description of the behavior of regular expression constructs, please see Mastering Regular Expressions, 2nd Edition, Jeffrey E. F. Friedl, O'Reilly and Associates, 2002. \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Syntax\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\":\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"regexp - a regular expression, used to extract part of the data from another column \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\"will be extracted out of the value in the source column\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]},{\"type\":\"table\",\"content\":[{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\" {regexp,refIndex=index | refName=column_name;columnType=date\u002Ftimestamp\u002Fnumber;multiLine=true\u002Ffalse,(regular_expression_to_extract)}\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"refIndex\u002F\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"refName\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"(mandatory): the zero-based index of the source column \u002F the name of the source column\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"columnType \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\"(mandatory for date\u002Ftimestamp only):\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"columnType=timestamp;dateFormat=\u003Cthe desired format of the date\u003E\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"columnType=date;dateFormat=\u003Cthe format of the date in the log to be extracted\u003E\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"dateUIFormat=\",\"type\":\"text\"},{\"text\":\"\u003Cthe format of the date desired to be displayed in XpoLog\u003E\",\"type\":\"text\"},{\"text\":\" \",\"type\":\"text\"},{\"text\":\" \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\"multiLine\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" (optional): indicates whether the record spreads over more than one line \",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"expression\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" (mandatory): the regular expression that will be extracted out of the value in the source column\",\"type\":\"text\"}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"type\":\"hardBreak\"},{\"text\":\"Examples\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\":\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]},{\"type\":\"table\",\"content\":[{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableHeader\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Log Events Example\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]}]}]},{\"type\":\"tableHeader\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"XpoLog Pattern\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]}]}]},{\"type\":\"tableHeader\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"What will be extracted by the \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"type\":\"hardBreak\"},{\"text\":\"Regular Expression \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]}]}]}]},{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Mon Jul 10 04:33:51 2017 ALTER DATABASE ADD LOGFILE THREAD 2 GROUP 3 ('\u002Foradata\u002FPROD\u002Fredo.log') SIZE 200K, \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\"GROUP 4 ('\u002Foradata\u002FPROD\u002Fredo.log') SIZE 200K\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"type\":\"hardBreak\"},{\"text\":\"ORA-336 signalled during: ALTER DATABASE ADD LOGFILE THREAD 2 GROUP 3 ('\u002Foradata\u002FPROD\u002Fredo.log') SIZE 200K, \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\"GROUP 4 ('\u002Foradata\u002FPROD\u002Fredo.log') SIZE 200K...\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"{date:Date,EEE MMM dd HH:mm:ss yyyy}{regexp:Error Code,refName=Message,(ORA-\\\\d+)}{string:Message}\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"ORA-336 \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}},{\"type\":\"strong\"},{\"type\":\"em\"}]},{\"text\":\" \",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}},{\"type\":\"em\"}]},{\"text\":\"will be extracted to a unique column\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]}]}]},{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Log Message: Error in Application at \u003C2017-05-05 12:00:00.000\u003E\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"{text:type}:{string:Message}{regexp:Date,refName=Message;columnType=\",\"type\":\"text\"},{\"text\":\"date\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\";dateFormat=yyyy-MM-dd HH:mm:ss.SSS,\u003C(\\\\d\\\\d\\\\d\\\\d-\\\\d\\\\d-\\\\d\\\\d \\\\d\\\\d:\\\\d\\\\d:\\\\d\\\\d\\\\.\\\\d\\\\d\\\\d)\u003E}\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"2017-05-05 12:00:00.000\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"em\"}]},{\"text\":\" will be extracted to a unique column of type date\",\"type\":\"text\"}]}]}]},{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"Log Message: Error in Application at \u003C1399291200000\u003E\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"{\",\"type\":\"text\"},{\"text\":\"text:type}:{string:Message}{regexp:Timestamp,refName=Message;columnType=\",\"type\":\"text\"},{\"text\":\"timestamp\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\";dateFormat=yyyy-MM-dd\",\"type\":\"text\"},{\"text\":\" HH:\",\"type\":\"text\"},{\"text\":\"mm:ss.SSS\",\"type\":\"text\"},{\"text\":\",\u003C(\\\\d+)\u003E}\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"2017-05-05 12:00:00.000\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"em\"}]},{\"text\":\" will be extracted to a unique column of type date (which is a translation of the timestamp \",\"type\":\"text\"},{\"text\":\"1399291200000)\",\"type\":\"text\"}]}]}]},{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"2017-05-05 12:00:00.000 ERROR Failed to run application, x=1\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"2017-05-05 12:00:00.000 ERROR Failed to run application, y=2\",\"type\":\"text\"},{\"type\":\"hardBreak\"},{\"text\":\"2017-05-05 12:00:00.000 ERROR Failed to run application, z=3\",\"type\":\"text\"},{\"text\":\" \",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"{date,yyyy-MM-dd HH:mm:ss.SSS} {text:\",\"type\":\"text\"},{\"text\":\"Priority\",\"type\":\"text\"},{\"text\":\"} {string:Message}\",\"type\":\"text\"},{\"text\":\"{regexp:Error-Code,refName=Message,((x=)|(y=)|(z=))(\\\\s*)[XPLG_PARAM(\\\\d+)]}\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"This regular expression looks for numbers either after 'x=' \u002F 'y=' \u002F 'z=' and will extract the result under a unique column\",\"type\":\"text\"}]}]}]},{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"2017-05-05 12:00:00.000 ERROR Invalid Processing Time: 875ms\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"{date,yyyy-MM-dd HH:\",\"type\":\"text\"},{\"text\":\"mm:ss.SSS\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http:\u002F\u002Fmmss.SSS\"}}]},{\"text\":\"} {text:\",\"type\":\"text\"},{\"text\":\"Priority\",\"type\":\"text\"},{\"text\":\"} {string:Message}\",\"type\":\"text\"},{\"text\":\"{regexp:Processing-Time,refName=Message;columnType=number,\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]},{\"text\":\"Processing Time: (\\\\d+)}\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#000000\"}}]}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"875 \",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"},{\"type\":\"em\"}]},{\"text\":\"will be extracted to a unique column of type number\",\"type\":\"text\"}]}]}]},{\"type\":\"tableRow\",\"content\":[{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"2017-05-05 12:00:00.000 ERROR Message = \\\"userCode\\\":{\\\"XXXX\\\":\\\"YYYYYY\\\"}\",\"type\":\"text\"}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"{date,yyyy-MM-dd HH:\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"mm:ss.SSS\",\"type\":\"text\",\"marks\":[{\"type\":\"link\",\"attrs\":{\"href\":\"http:\u002F\u002Fmmss.sss\u002F\"}},{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"} {text:\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"Priority\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"} {string:Message}\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"{regexp:Code-X,refName=\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"Message\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\",\\\"\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"userCode\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"\\\":\\\\u007B\\\"([^\\\"]*)}{regexp:Code-Y,refName=\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"Message\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\",\\\"\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"userCode\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]},{\"text\":\"\\\":\\\\u007B\\\"\\\\w+\\\":\\\"([^\\\"]*)}\",\"type\":\"text\",\"marks\":[{\"type\":\"textColor\",\"attrs\":{\"color\":\"#3c3e43\"}}]}]}]},{\"type\":\"tableCell\",\"attrs\":{\"colspan\":1,\"rowspan\":1},\"content\":[{\"type\":\"paragraph\",\"content\":[{\"text\":\"XXXX\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" will be extracted to a \",\"type\":\"text\"},{\"text\":\"a unique column (Code-X)\",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" \",\"type\":\"text\"},{\"text\":\"YYYYYY\",\"type\":\"text\",\"marks\":[{\"type\":\"strong\"}]},{\"text\":\" will be extracted to a \",\"type\":\"text\"},{\"text\":\"a unique column (Code-Y)\",\"type\":\"text\"}]}]}]}]},{\"type\":\"paragraph\",\"content\":[{\"text\":\" \",\"type\":\"text\"}]},{\"type\":\"paragraph\",\"content\":[{\"type\":\"hardBreak\"}]}],\"version\":1}","content":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic.content","typename":"Content"},"webresource":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic.webresource","typename":"WebResourceDependencies"},"__typename":"ContentBody"},"$Content:1595637714.body.dynamic.content.version":{"number":5,"__typename":"Version"},"$Content:1595637714.body.dynamic.content":{"version":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic.content.version","typename":"Version"},"__typename":"Content"},"$Content:1595637714.body.dynamic.webresource.superbatch.tags":{"js":"\u003Cscript nonce=\"d62a0069e8a74922a627a35b5c979d78\" 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=\"d62a0069e8a74922a627a35b5c979d78\" 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=\"d62a0069e8a74922a627a35b5c979d78\" type=\"text\u002Fjavascript\" src=\"\u002F\u002Fd3i2khpa91nejt.cloudfront.net\u002Fxpolog.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F1993547107\u002Fh\u002Ff4eb17c447724596d16b753593a128891378bfe8500a4124031862de00012dd8\u002F_\u002Fdownload\u002Fcontextbatch\u002Fjs\u002F_super\u002Fbatch.js?assetVersion=1000.0.0-5f93aae1a00519827&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=\"d62a0069e8a74922a627a35b5c979d78\" href=\"\u002F\u002Fd3i2khpa91nejt.cloudfront.net\u002Fxpolog.atlassian.net\u002Fwiki\u002Fs\u002Fe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855-CDN\u002F1993547107\u002Fh\u002F3663815473e81270e800ce9d6485afdd629b9f8a7fbc152756a2a15323172614\u002F_\u002Fdownload\u002Fcontextbatch\u002Fcss\u002F_super\u002Fbatch.css?assetVersion=1000.0.0-5f93aae1a00519827&externals=__local-default__&relative-url=true\" data-wrm-key=\"_super\" data-wrm-batch-type=\"context\" media=\"all\"\u003E\n","__typename":"WebResourceTags"},"$Content:1595637714.body.dynamic.webresource.superbatch":{"tags":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic.webresource.superbatch.tags","typename":"WebResourceTags"},"__typename":"SuperBatchWebResources"},"$Content:1595637714.body.dynamic.webresource":{"superbatch":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic.webresource.superbatch","typename":"SuperBatchWebResources"},"tags":{"type":"id","generated":true,"id":"$Content:1595637714.body.dynamic.webresource.tags","typename":"WebResourceTags"},"__typename":"WebResourceDependencies"},"$Content:1595637714.body.dynamic.webresource.tags":{"js":"","css":"","__typename":"WebResourceTags"},"$Content:1595637714.labels({\"orderBy\":{\"direction\":\"ASCENDING\",\"sortField\":\"LABELLING_CREATIONDATE\"}})":{"count":0,"nodes":[],"__typename":"PaginatedLabelList"},"$ROOT_QUERY.content({\"id\":\"1595637714\",\"version\":null})":{"nodes":[{"type":"id","generated":false,"id":"Content:1595637714","typename":"Content"}],"__typename":"PaginatedContentListWithChild"},"$Space:1593966486.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:1593966486.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\":\"ba59c560-d40a-4f26-901d-760291a417f8\",\"context\":{\"spaceKey\":\"XPOL\"},\"includeHidden\":false,\"locale\":\"en-US\",\"types\":[\"confluence:spacePage\"]})":[],"confluence_forgeExtensionsByType({\"cloudId\":\"ba59c560-d40a-4f26-901d-760291a417f8\",\"context\":{\"contentId\":\"1595637714\",\"spaceKey\":\"XPOL\"},\"includeHidden\":false,\"locale\":\"en-US\",\"types\":[\"xen:macro\"]})":[]}};window.__SITEINFORMATION__={"tenant":{"shard":"confluence-prod-us-2-3.prod.atl-paas.net","cloudId":"ba59c560-d40a-4f26-901d-760291a417f8","environment":"PRODUCTION","activationId":"f0fe8a64-bdb5-4bb3-a172-daa3aa838797","__typename":"Tenant"},"organization":{"orgId":"99c2a8d7-7039-444b-b60b-430c1e8db67b","__typename":"Organization"},"userForAnalytics":null,"user":null,"getAIConfig":{"isEnabled":false,"isRovoEnabled":false,"isAIEarlyAccessEnabled":true,"isRovoLLMEnabled":false,"__typename":"AIConfigResponse"},"confluence_tenantContext":{"licenseStates":{"confluence":{"ccpEntitlementId":"7ba1ff98-b3bd-4f83-a571-339c07ed41ce","__typename":"LicenseState"},"__typename":"LicenseStates"},"timeZone":"Asia\u002FJerusalem","editions":{"confluence":"STANDARD","__typename":"Editions"},"monolithRegion":"prod-west2","__typename":"ConfluenceTenantContext"},"isSiteAdmin":false,"abTestCohorts":"{\"spaceDefaultContentRevamp\":\"25-30\"}","experimentFeatures":"{\"confluence_backend_fabric_editor_for_all_pages\":\"false\",\"confluence_live_pages_beta\":\"beta-default-on\",\"confluence_content_wrapper_beta\":\"null\",\"confluence_modernize\":\"exp-test\",\"confluence_aifc\":\"exp-test\"}","userCanCreateContent":false,"isNewUser":false,"siteSettings":{"homepage":{"uri":"\u002Fspaces\u002FXPOL\u002Foverview","title":"Overview","__typename":"Homepage"},"siteTitle":"XPLG Technical Resources","showApplicationTitle":false,"frontCover":{"frontCoverState":"hidden","__typename":"FrontCover"},"companyHubName":"Company hub","__typename":"SiteSettings"},"siteDescription":{"logoUrl":"\u002Fwiki\u002Fdownload\u002Fattachments\u002F32771\u002Fatl.site.logo?version=1&modificationDate=1645605713193&cacheVersion=1&api=v2","__typename":"SiteDescription"},"currentConfluenceUser":{"isAnonymous":true,"__typename":"CurrentConfluenceUser"}};window.__SSR_LOCALE__="en-US";window.__REMOTE_LOCAL_STORAGE__={};window.__PRELOADED_SEARCH__=null;window.__SSR_BUILD__="CLASSIC-master-12334030";window.__FETCH_COUNT__=25;window.__SSR_OPERATIONS_COUNT__=55;window.__DELAY_COLLECT_SSR_PLACEHOLDERS__=false;window.__DOCUMENT_TITLE_TAG__="XpoLog Regular Expressions Patterns Language - XPLG - XPLG Technical Resources";window.__SSR_QUERY_TIMEOUTS__={"prepareGuardTimeouts":{},"bestEffortTimeouts":{},"criticalTimeouts":false};window.__SSR_NONCE_VALUE__="";window.__COOKIE_CONSENT_PREFERENCES__={"consentToken":"0030000101"};window.__WEB_STORAGE_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__=1773507336826;window.__CC_MOBILE_QUERY_PARAM_EXP__=false;window.__IS_BIFROST__=false;window.__IS_MULTITHREADED_RUNTIME__=false;window.__SSR_REACT_STREAMING__=false;window.__SSR_TAP_CONTEXT__={"siteUser":{"switcheroo_global_pool_0":149,"xflow_prst_0":92,"shared_nav3_cohort_0":2},"site":{"segment_jira_labels_edited_last_28_days_siteid_siteid":false,"confluence_first_migration_signal_date":"2021-12-23T00:00:00","confluence_activation_older_than_30_days":true,"segment_mic_invite_modal_experiment_audience_siteid":true,"is_ai_enabled_for_tenant":true,"navtypebackfillstatus":"complete","confluence_edition_standard_first":"2024-04-19T14:40:00.218494511Z","board_key_moments_experiment":true,"confluence_edition":"Standard","rovo_dev_enabled_site":true,"confluence_slack_track_days_since_tenant_last_active":6,"upsell_jsw_tenants_gte_80_percent_automation_usage":1,"confluence_migration_status":true,"segment_semantic_search_eligibility_siteid":false,"com.mxgraph.confluence.plugins.diagramly.ondemand.activationDate":"2018-11-04T15:10:10.714Z","confluence_end_date":"2026-04-06T20:10:01Z","navboost_exp_tenants":1,"android_fabric_renderer_cohort":"","navboost_active_tenants":1,"segment_jsw_was_paid_tenant_5d_ago_siteid":true,"segment_jira_tenants_without_all_conf_jsm_jpd_siteid":true,"confluence_msteams_v2_days_since_tenant_last_active":279,"loombetaoptin":"cohort7","segment_growth_experiment_recommending_templates_in_jira_projects_menu_audience_siteid":true,"upaas_jsw_premium_eval_site_binary":false,"xflow_prst_0":73,"rovo_nudge_end_user_rendered_smartlinks_percentage":"29,sharepoint","growth_slack_active_instances":true,"brain_jsw_to_jwm_implicit_site_boolean":true,"confluence_site_with_inactive_invited_user_eligible_for_reminder":true,"coreml_prod_xflow_jsw_to_jsm_jpd_conf_site_string_v0":"a6f908c8-709c-45f4-9e2d-eca25b93b94a,de63a248-1f93-46ed-b6ea-ab8e38af1c88,6aab3f4e-cc71-474d-8d28-abef8b057808","segment_jpd_d22_tenants_without_all_jsw_jsm_conf_loom_siteid":true,"confluence_migration_touchpoint":"migration-cloud-import","is_ccp_site":true,"segment_growth_recommending_templates_in_jira_projects_menu_experiment_audience_siteid":true,"in_editor_cohort":"low_complexity_test","segment_navx-full-height-sidebar-ct_siteid":true,"confluence_modernize":"exp-test","jsis-disable-deprecated-rest-api-traffic":true,"growth_automation_limits_current_usage":"0","licensedEvaluator":false,"has_shown_intent_to_xflow_to_confluence":true,"licensedUnitCount":5000,"segment_confluence_d15_tenants_without_all_jsw_jsm_jpd_siteid":true,"segment_list_grouped_view_site_siteid":true,"confluence_aifc":"exp-test","rovo_3p_integration_admin_nudge_trait":"29,github,onedrive","cloud_migration_data_import":"2021-12-23","growth_jsw_site_age_greater_than_28_days":true,"site_with_inactive_invited_user_eligible_for_reminder":true,"brain_jsw_to_jsm_devops_itsm_site_string":"ITSM","brain_jsw_to_jsm_jpd_conf_site_string":"6aab3f4e-cc71-474d-8d28-abef8b057808,de63a248-1f93-46ed-b6ea-ab8e38af1c88,a6f908c8-709c-45f4-9e2d-eca25b93b94a","confluence.ondemand.activationDate":"2015-12-30T08:00:00.000Z","Rovodev_in_Jira_GA_SITE_v2":14,"rovo_nudge_end_user_connected_at_least_one_app":"24,drive,sharepoint","segment_confluence_was_paid_tenant_5d_ago_siteid":true,"is_rovo_tenant_sharepoint_or_onedrive_connector_enabled":true,"external_product_integrations_track_jira_slack_days_since_tenant_last_active":0,"licensedProductList":"is.origo.jira.tempo-plugin,confluence,jira-software,com.mxgraph.confluence.plugins.diagramly,com.tempoplugin.tempo-planner","confluence_migration_type":"Not Applicable","price-increase-site-test":false,"confluence_seats_sub_1000":true,"is_rovo_enabled_for_tenant":true,"confluence.older_than_14_days":true,"last_time_timed_enrollment_generated_site":"2023-04-11T15:41:00Z","segment_jira_sites_with_connected_scm_tools_siteid":true,"test-confluence-ondemand-instance-status-6":"running","confluence_purchase_date":"2020-04-06T00:00:00.000Z","firstProductActivationDate":"2018-08-01T10:54:08.308Z","test-confluence-ondemand-instance-status-7":"running","upaas_jsw_premium_eval_site_numerical":1,"test-confluence-ondemand-instance-status-8":"running","confluence_slack_days_since_tenant_last_active":3,"is_rovo_enabled_for_tenant_min_30_days":true,"Rovodev_in_Jira_GA_SITE":"cohort1.4","segment_jira_global_nav_experiment_follow_up_siteid":true,"jsw.xflow.megaphone.expand.score":0.01698,"smartlink_app_exposure_rate":"sharepoint:6, github:18, onedrive:6","coreml_expr_xflow_na_to_jsw_jsm_jpd_conf_atlas_site_string_v1":"de63a248-1f93-46ed-b6ea-ab8e38af1c88,a6f908c8-709c-45f4-9e2d-eca25b93b94a,d8a847a4-cde4-4c50-8ea1-dc3d4193214f,6aab3f4e-cc71-474d-8d28-abef8b057808,7c917705-866d-4b6b-b266-0fc7633e8342,fdb4649d-ca4d-49f8-a8bf-ffa558a65551","coreml_expr_xflow_na_to_jsw_jsm_jpd_conf_atlas_site_string_v0":"[\"de63a248-1f93-46ed-b6ea-ab8e38af1c88\",\"a6f908c8-709c-45f4-9e2d-eca25b93b94a\",\"d8a847a4-cde4-4c50-8ea1-dc3d4193214f\",\"6aab3f4e-cc71-474d-8d28-abef8b057808\",\"7c917705-866d-4b6b-b266-0fc7633e8342\",\"fdb4649d-ca4d-49f8-a8bf-ffa558a65Z551\"]","brain_jsw_to_jsm_jpd_confluence_site_string":"a6f908c8-709c-45f4-9e2d-eca25b93b94a,de63a248-1f93-46ed-b6ea-ab8e38af1c88,6aab3f4e-cc71-474d-8d28-abef8b057808","growth_automation_limits_usage_latest_breach_date":"2025-12-31","fabric_comments_cohort":"control_30_to_50","smartlink_overall_exposure_rate":29,"confluence_aifc_enabled_datetime":"2026-01-14T08:55:15.459Z","segment_proforma_migrated_to_ers_siteid":true,"site-has-twc-price-increase":false,"hasConfluenceMobileAppUsers":true,"company_hub_is_published_status":false,"segment_quick_search_vs_quick_find_row_7_audience_siteid":true,"firstActivationDate":"1970-01-01T00:00:00Z","confluence_entitlement_type":"Commercial","confluence_unit_count":17,"shared_nav3_cohort_0":9,"has_jira_dashboard_marketplace_apps":true,"brain_jsw_to_jsm_site_binary":true,"is_rovo_tenant_gdrive_connector_enabled":true,"segment_jpd_was_paid_tenant_5d_ago_siteid":true,"customer_tier_for_migrations":"OTHER","site-twc-price-percentage-increase":-3,"confluence_software_site_mau":16,"fabricCohort":"FABIC_38_63","confluence_software_page_created_h1":89,"switcheroo_global_pool_0":98,"confluence_entitlement_level":"Full","whiteboardsbeta":"admin-opt-in"},"user":{"fps_auto_applied_filters_experiment_v1":true,"loom_ui_viewed":true,"switcheroo_global_pool_0":19,"xflow_prst_0":82,"shared_nav3_cohort_0":2}};window.__SUPERBATCH_REQUESTED__=false;window.__MEDIA_CONFIG__={"clientId":"005d26dc-ded4-4dc7-b9d8-5cbe68716901","baseUrl":"https:\u002F\u002Fapi.media.atlassian.com","token":"eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiIwMDVkMjZkYy1kZWQ0LTRkYzctYjlkOC01Y2JlNjg3MTY5MDEiLCJhY2Nlc3MiOnsidXJuOmZpbGVzdG9yZTpjb2xsZWN0aW9uOmNvbnRlbnRJZC0xNTk1NjM3NzE0IjpbInJlYWQiXX0sImV4cCI6MTc3MzUxMDIxNywibmJmIjoxNzczNTA3MzM3LCJodHRwczovL2lkLmF0bGFzc2lhbi5jb20vYXBwQWNjcmVkaXRlZCI6ZmFsc2V9.T0wguqYX3efgEomIEPZBNpPVrf8qFBqgL6-4909ys0o"};window.__MEDIA_CONFIG_ENFORCE_DSP__=false;window.__LEGACY_MACRO_PARAMS__=[];window.__LEGACY_MACRO_SSRED__={};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":41,"unknown":40,"ContentTreeIconLoader":42,"lazyForgeUIExtensionsWithLoader":3,"CustomHeaderFooterLoader":2};window.__SSR_TEST_QUERY_FIRED__={};window.__SSR_PARTIAL_SUCCESS__={"PageTree":true,"EndOfPageRecommendation":true};window.__SSR_RESTRICTED_PAGE__={"route":null,"errorType":null};window.__MISSING_DATA_MACROS__=[];window.__DELAYED_CONTENT_REDIRECTION__={"contentSlug":"XpoLog+Regular+Expressions+Patterns+Language"};window.__SPACE_NOTFOUND_CHECK_ERROR__=false;window.__SPACE_RESTRICTED_CHECK_ERROR__=false;window.__SSR_TRACE_ID__="d62a0069e8a74922a627a35b5c979d78";window.__SSR_TRACE_SAMPLED__=false;window.__HYDRATABLE__=true;window.__TESSERACT_LABEL__="prod-12334030";window.__SSR_REGION__="prod-west2";window.performance.mark("wf/html/ssrGlobals.end");