Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

How to Index AEM Page Metadata (Tags, Title, Description) in Coveo?

Avatar

Level 5

I’m integrating Coveo with AEM 6.5.23, and I want to make sure that my AEM page metadata and cq:tags are properly indexed in Coveo.

I can crawl the content using the Coveo web connector, but I’m not sure how to:

Expose custom metadata fields (like cq:tags) from AEM to Coveo.

Map those fields in the Coveo index.

Has anyone set up field mapping for AEM metadata in Coveo? A sample configuration or mapping JSON would be really helpful.

 

Regards,

Karishma.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Karishma_begumSh,

Stemap - make sure your pages output metadata that Coveo can read - easiest via sitemap.

In sitemap XML, include custom metadata:

 <url>
  <loc>https://www.example.com/mypage.html</loc>
  <coveo:metadata>
    <title><![CDATA[Page Title]]></title>
    <description><![CDATA[Meta description here]]></description>
    <tags><![CDATA[tag1;tag2;tag3]]></tags>
  </coveo:metadata>
</url>

Extend AEM’s sitemap generator to include these.

Once you done, create fields in Coveo

and last step is add mapping - link metadata to these fields.


Santosh Sai

AEM BlogsLinkedIn


View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @Karishma_begumSh,

Stemap - make sure your pages output metadata that Coveo can read - easiest via sitemap.

In sitemap XML, include custom metadata:

 <url>
  <loc>https://www.example.com/mypage.html</loc>
  <coveo:metadata>
    <title><![CDATA[Page Title]]></title>
    <description><![CDATA[Meta description here]]></description>
    <tags><![CDATA[tag1;tag2;tag3]]></tags>
  </coveo:metadata>
</url>

Extend AEM’s sitemap generator to include these.

Once you done, create fields in Coveo

and last step is add mapping - link metadata to these fields.


Santosh Sai

AEM BlogsLinkedIn