An error occurred while processing the template.
Java method "com.liferay.portal.json.JSONFactoryImpl.createJSONObject(String)" threw an exception when invoked on com.liferay.portal.json.JSONFactoryImpl object "com.liferay.portal.json.JSONFactoryImpl@accaf68"; see cause exception in the Java stack trace.

----
FTL stack trace ("~" means nesting-related):
	- Failed at: navigationJSONObject = jsonFactoryUti...  [in template "8911408109993434201#23484949#LEARN-ARTICLE-NAV" at line 4, column 9]
----
1<#assign 
2	groupFriendlyURL = themeDisplay.getScopeGroup().getFriendlyURL() 
3	groupPathFriendlyURLPublic = themeDisplay.getPathFriendlyURLPublic() + groupFriendlyURL 
4	navigationJSONObject = jsonFactoryUtil.createJSONObject(navigation.getData()) 
5	navigationMenuItems = 
6
7			"Analytics Cloud": { 
8				"image": "/documents/d${groupFriendlyURL}/analytics_c-svg", 
9				"title": "Analytics Cloud", 
10				"url": "analytics-cloud" 
11			}, 
12			"Commerce": { 
13				"image": "/documents/d${groupFriendlyURL}/commerce_product-svg", 
14				"title": "Commerce", 
15				"url": "commerce" 
16			}, 
17			"DXP": { 
18				"image": "/documents/d${groupFriendlyURL}/dxp_p-svg", 
19				"title": "DXP / Portal", 
20				"url": "dxp" 
21			}, 
22			"Liferay Cloud": { 
23				"image": "/documents/d${groupFriendlyURL}/dxp_c-svg", 
24				"title": "Liferay Cloud", 
25				"url": "liferay-cloud" 
26			}, 
27			"Reference": { 
28				"image": "/documents/d${groupFriendlyURL}/reference-svg", 
29				"title": "Reference", 
30				"url": "reference" 
31
32
33 
34	breadcrumbJSONArray = navigationJSONObject.getJSONArray("breadcrumb") 
35	childrenJSONArray = navigationJSONObject.getJSONArray("children") 
36	parentJSONObject = navigationJSONObject.getJSONObject("parent") 
37	productJSONObject = breadcrumbJSONArray.getJSONObject(breadcrumbJSONArray.length()-1)!navigationJSONObject.getJSONObject("self") 
38	siblingsJSONArray = navigationJSONObject.getJSONArray("siblings") 
39/> 
40 
41<div class="learn-article-nav"> 
42	<#if productJSONObject?has_content && productJSONObject.getString("title")?has_content && navigationMenuItems[productJSONObject.getString("title")]?has_content && navigationMenuItems[productJSONObject.getString("title")].title?has_content> 
43		<div 
44			class="dropdown learn-article-nav-root learn-dropdown" 
45
46			<div class="learn-article-nav-item"> 
47				<div class="d-flex"> 
48					<div class="learn-article-nav-image"> 
49						<img 
50							class="lexicon-icon lexicon-icon-caret-bottom product-icon" 
51							role="presentation" 
52							src='${navigationMenuItems[productJSONObject.getString("title")].image}' 
53							viewBox="0 0 512 512" 
54						/> 
55					</div> 
56 
57					<span class="learn-article-nav-text">${navigationMenuItems[productJSONObject.getString("title")].title}</span> 
58				</div> 
59 
60				<div id="dropdown-icon"> 
61					<svg 
62						class="lexicon-icon lexicon-icon-caret-bottom" 
63						role="presentation" 
64						viewBox="0 0 512 512" 
65
66						<use xlink:href="/o/admin-theme/images/clay/icons.svg#caret-bottom"></use> 
67					</svg> 
68				</div> 
69			</div> 
70 
71			<ul class="dropdown-menu learn-dropdown-menu"> 
72				<#list navigationMenuItems as key, value> 
73					<li> 
74						<a 
75							class="dropdown-item learn-article-nav-item" 
76							href="/w/${navigationMenuItems[key].url}/index" 
77							tabindex="4" 
78
79							<span class="d-flex"> 
80								<span class="learn-article-nav-image"> 
81									<img 
82										class="lexicon-icon lexicon-icon-caret-bottom product-icon mt-0 mr-2" 
83										role="presentation" 
84										src="${value.image}"height: 25px; margin-left: 5px; max-width: none; width: 25px; 
85										viewBox="0 0 512 512" 
86									/> 
87								</span> 
88								<span class="learn-article-nav-text">${value.title}</span> 
89							</span> 
90 
91							<#if navigationMenuItems[productJSONObject.getString("title")].url == value.url> 
92								<span> 
93									<@clay["icon"] symbol="check" /> 
94								</span> 
95							</#if> 
96						</a> 
97					</li> 
98				</#list> 
99			</ul> 
100		</div> 
101	</#if> 
102 
103	<div class="learn-article-nav-content"> 
104		<#if parentJSONObject?has_content && parentJSONObject.getString("url")?has_content> 
105			<div class="learn-article-nav-item learn-article-nav-parent liferay-nav-item p-2"> 
106				<div class="mr-2"> 
107					<a 
108						href='${parentJSONObject.getString("url")}' 
109
110						<svg 
111							class="lexicon-icon lexicon-icon-angle-left" 
112							role="presentation" 
113							viewBox="0 0 512 512" 
114
115							<use xlink:href="/o/admin-theme/images/clay/icons.svg#angle-left"></use> 
116						</svg> 
117					</a> 
118				</div> 
119 
120				<span>${parentJSONObject.getString("title")}</span> 
121			</div> 
122		</#if> 
123 
124		<#if childrenJSONArray.length() gt 0> 
125			<ul class="m-0 p-2"> 
126				<#list 0..childrenJSONArray.length()-1 as i> 
127					<li class="learn-article-nav-item"> 
128						<a 
129							class='liferay-nav-item ${(navigationJSONObject.getJSONObject("self").url == childrenJSONArray.getJSONObject(i).url)?then("selected", "")}' 
130							href="${childrenJSONArray.getJSONObject(i).url}" 
131
132							<span>${childrenJSONArray.getJSONObject(i).getString("title")}</span> 
133						</a> 
134					</li> 
135				</#list> 
136			</ul> 
137		<#elseif siblingsJSONArray.length() gt 0> 
138			<ul class="m-0 p-2"> 
139				<#list 0..siblingsJSONArray.length()-1 as i> 
140					<li class="learn-article-nav-item"> 
141						<a 
142							class='liferay-nav-item ${(navigationJSONObject.getJSONObject("self").url == siblingsJSONArray.getJSONObject(i).url)?then("selected", "")}' 
143							href="${siblingsJSONArray.getJSONObject(i).url}" 
144
145							<span>${siblingsJSONArray.getJSONObject(i).getString("title")}</span> 
146						</a> 
147					</li> 
148				</#list> 
149			</ul> 
150		</#if> 
151	</div> 
152</div> 
An error occurred while processing the template.
Java method "com.liferay.portal.json.JSONFactoryImpl.createJSONObject(String)" threw an exception when invoked on com.liferay.portal.json.JSONFactoryImpl object "com.liferay.portal.json.JSONFactoryImpl@accaf68"; see cause exception in the Java stack trace.

----
FTL stack trace ("~" means nesting-related):
	- Failed at: navigationJSONObject = jsonFactoryUti...  [in template "8911408109993434201#23484949#LEARN-ARTICLE" at line 3, column 9]
----
1<#assign 
2	journalArticleId = .vars["reserved-article-id"].data 
3	navigationJSONObject = jsonFactoryUtil.createJSONObject(navigation.getData()) 
4	taxonomyCategoriesMap = {} 
5	taxonomyCategoryBriefs = restClient.get("/headless-delivery/v1.0/sites/${groupId}/structured-contents/by-key/${journalArticleId}?nestedFields=embeddedTaxonomyCategory").taxonomyCategoryBriefs 
6	taxonomyVocabularies = [] 
7 
8	childrenJSONArray = navigationJSONObject.getJSONArray("children") 
9	breadcrumbJSONArray = navigationJSONObject.getJSONArray("breadcrumb") 
10	showChildrenCards = showChildrenCards.getData()?boolean 
11/> 
12 
13<#list taxonomyCategoryBriefs as taxonomyCategoryBrief> 
14	<#assign taxonomyVocabularyName = taxonomyCategoryBrief.embeddedTaxonomyCategory.parentTaxonomyVocabulary.name /> 
15 
16	<#if !taxonomyVocabularies?seq_contains(taxonomyVocabularyName)> 
17		<#assign taxonomyVocabularies = taxonomyVocabularies + [taxonomyVocabularyName] /> 
18	</#if> 
19 
20	<#if taxonomyCategoriesMap[taxonomyVocabularyName]?has_content> 
21		<#assign taxonomyCategoriesMap = taxonomyCategoriesMap + 
22
23				taxonomyVocabularyName: 
24					taxonomyCategoriesMap[taxonomyVocabularyName] + [{ 
25						"categoryId": taxonomyCategoryBrief.taxonomyCategoryId, 
26						"categoryName": taxonomyCategoryBrief.taxonomyCategoryName 
27					}] 
28
29		/> 
30	<#else> 
31		<#assign taxonomyCategoriesMap = taxonomyCategoriesMap + 
32
33				taxonomyVocabularyName: 
34					[{ 
35						"categoryId": taxonomyCategoryBrief.taxonomyCategoryId, 
36						"categoryName": taxonomyCategoryBrief.taxonomyCategoryName 
37					}] 
38
39		/> 
40	</#if> 
41</#list> 
42 
43<article class="learn-article"> 
44	<div class="d-flex flex-column"> 
45		<div class="learn-article-breadcrumbs"> 
46			<div class="learn-article-breadcrumbs-content"> 
47				<div class="align-items-baseline d-flex justify-content-between mb-3"> 
48					<ul 
49						aria-label="breadcrumb navigation" 
50						class="learn-article-breadcrumb" 
51						role="navigation" 
52
53						<li> 
54							<a href="/"><@clay["icon"] symbol="home-full" /></a> 
55						</li> 
56 
57						<#if breadcrumbJSONArray.length() gt 0> 
58							<#list breadcrumbJSONArray.length()-1..0 as i> 
59								<li> 
60									<a href='${breadcrumbJSONArray.getJSONObject(i).getString("url")}'>${breadcrumbJSONArray.getJSONObject(i).getString("title")}</a> 
61								</li> 
62							</#list> 
63						</#if> 
64 
65						<li> 
66							${navigationJSONObject.getJSONObject("self").getString("title")} 
67						</li> 
68					</ul> 
69 
70					<div class="submit-feedback"> 
71						<a 
72							class="text-decoration-none" 
73							href="https://liferay.dev/c/portal/login?redirect=https://liferay.dev/ask/questions/liferay-learn-feedback/new" 
74
75							${languageUtil.get(locale, "submit-feedback", "Submit Feedback")} 
76							<@clay["icon"] symbol="message-boards" /> 
77						</a> 
78					</div> 
79				</div> 
80			</div> 
81		</div> 
82 
83		<div class="learn-article-wrapper"> 
84			<div class="language-log learn-article-content"> 
85				<#if (content.getData())??> 
86					${content.getData()} 
87				</#if> 
88 
89				<#if showChildrenCards && childrenJSONArray.length() gt 0> 
90					<div class="learn-card-container"> 
91						<#list 0..childrenJSONArray.length()-1 as i> 
92							<#assign childJSONObject = childrenJSONArray.getJSONObject(i) /> 
93 
94							<div class="learn-card"> 
95								<a href="${childJSONObject.getString("url")}"> 
96									<h4>${childJSONObject.getString("title")}</h4> 
97								</a> 
98 
99								<#if childJSONObject.getJSONArray("children")?? && childJSONObject.getJSONArray("children").length() gt 0> 
100									<#assign grandchildrenJSONArray = childJSONObject.getJSONArray("children") /> 
101 
102									<div class="mt-2 subsection"> 
103										<#list 0..grandchildrenJSONArray.length()-1 as j> 
104											<#assign grandchildJSONObject = grandchildrenJSONArray.getJSONObject(j) /> 
105 
106											<a href="${grandchildJSONObject.getString("url")}"> 
107												${grandchildJSONObject.getString("title")} 
108											</a> 
109										</#list> 
110									</div> 
111								</#if> 
112							</div> 
113						</#list> 
114					</div> 
115				</#if> 
116 
117				<div class="learn-article-categories-tags"> 
118					<#list taxonomyVocabularies as vocabulary> 
119						<div class="align-items-baseline d-flex mt-2"> 
120							<div class="learn-article-category-title mr-2"> 
121								${vocabulary}: 
122							</div> 
123							<#list taxonomyCategoriesMap[vocabulary]?sort_by("categoryName") as taxonomyCategory> 
124								<div class="learn-article-category-tag mr-2"> 
125									<a 
126										class="label tag-container" 
127										href="/search?category=${taxonomyCategory.categoryId}" 
128
129										<span>${taxonomyCategory.categoryName}</span> 
130									</a> 
131								</div> 
132							</#list> 
133						</div> 
134					</#list> 
135				</div> 
136			</div> 
137 
138			<div class="learn-article-page-nav"> 
139				<ul class="nav nav-stacked toc" id="articleTOC"></ul> 
140			</div> 
141		</div> 
142	</div> 
143</article>