Question
How to Implement Content Fragment in EDS with Universal Editor?
I am trying to implement a Content Fragment in Edge Delivery Services (EDS) using the Universal Editor. I have created a Content Fragment with the following definition and model JSON:
{
"definitions": [
{
"title": "Content Fragments",
"id": "aem-content-fragment",
"plugins": {
"xwalk": {
"cf": {
"name": "Sample CF",
"cfModel": "EDS Xwalk Model",
"cfFolder": "samplecf",
"title": "Sample",
"description": "sample description",
"template": {
"name": "Content Fragment",
"model": "aem-content-fragment"
}
}
}
}
}
],
"models": [
{
"id": "aem-content-fragment",
"fields": [
{
"component": "aem-content-fragment",
"name": "picker",
"label": "Content Fragment Picker",
"valueType": "string",
"variationName": "contentFragmentVariation",
"validation": {
"rootPath": "/content/dam/eds-xwalk/content-fragment"
}
}
]
}
],
"filters": []
}
I am getting the following output:

However, I expect the output to be similar to what we get in AEM’s Content Fragment, where we can see the structured fields and variations properly rendered

Questions:
- Am I missing any configuration or model setup?
- How can I ensure the content fragment renders correctly in the Universal Editor?
- Are there additional settings needed for proper integration in EDS?