Module 13 - assessment (help needed)

Hi everyone,

Hope you are well.

I am struggling with module 13 Assessment. (account ID is 2561077)

My error is :

Update the Community Stories JSON page with verticalKey, pageTitle, cardType and label

In the Challenge, these are the values I am asked to enter:

  • Use “community_stories” as the verticalKey

Add the frontend page (using the vertical-standard template) and call it ‘communitystories’. In the config > communitystories.json file

  • Add the verticalKey from the search configuration (this is case-sensitive, so make sure you add it exactly as you did in Step 2)
  • Add “Community Story Search” as the pageTitle
  • Update the verticalsToConfig object with the verticalKey and the cardType. You’ll make the new card in the next step, but you know that you’re going to call it “communitystory” so you can update this now if you’d like, or come back to this after.
  • Add a label in the verticalsToConfig for the vertical so it looks better. Call it “Community Stories”.

This is my code

{
“verticalKey”: “community_stories”, // The vertical key from your search configuration
“pageTitle”: “Community Story Search”, // !!!REPLACE THIS VALUE!!! The contents of the title tag and meta open graph tag for title
// “metaDescription”: “”, // The meta tag for open graph description
// “canonicalUrl”: “”, // The link tag for canonical URL as well as the meta tag for open graph url
// “keywords”: “”, // The meta tag for keywords
“pageSettings”: {
/**
“search”: {
“verticalKey”: “”, // The vertical key from your search configuration
“defaultInitialSearch”: “” // Enter a default search term
}
/
},
“componentSettings”: {
/

“QASubmission”: {
“entityId”: “”, // Set the ID of the entity to use for Q&A submissions, must be of entity type “Organization”
“privacyPolicyUrl”: “” // The fully qualified URL to the privacy policy
},
/
/

“Facets”: {
“expand”: false, // Allow the user to expand and collapse the facets
“showMore”: false, // Display a link to see more facet options within a facet
“searchOnChange”: true // Will automatically run a search as facets are selected or unselected. Set to false to only trigger updates with an Apply button.
// Additional options are available in the documentation
},
/
/

“FilterLink”: {
“changeFiltersText”: “sorts and filters”, // Text that displays by default
“resetFiltersText”: “reset filters”, // Text when filters are applied
“clearSearchText”: “clear search” // Text when there are no results, conducts an empty search
},
**/
“AppliedFilters”: {
“removable”: true
},
“VerticalResults”: {
“noResults”: {
“displayAllResults”: true // Optional, whether to display all results in the vertical when no results are found.
},
“hideResultsHeader”: true
},
“SearchBar”: {
“placeholderText”: “Search”, // The placeholder text in the answers search bar
“allowEmptySearch”: true // Allows users to submit an empty search in the searchbar
},
“Pagination”: {
“noResults”: {
“visible”: true
}
}
},
// Configuration used to define the look and feel of the vertical, both on this page and, by default,
// on the universal page.
“verticalsToConfig”: {
“communitystory”: { // The vertical key from your search configuration
“label”: “Community Stories”,
// “verticalLimit”: 15, // The result count limit for vertical search
// “universalLimit”: 5, // The result count limit for universal search
“cardType”: “communitystory”, // The name of the card to use - e.g. accordion, location, customcard
“icon”: “star”, // The icon to use on the card for this vertical
“universalSectionTemplate”: “standard”
}
}
}

I have no clue where the error is.

Can anybody shed some light on this for me, please? :grinning:

Challenge account expires in 2 days.

Thank you in advance
Paolo

Hi Paulo,

Thanks for reaching out! You’re super close here - awesome job! It looks like your second instance of your verticalKey under verticalsToConfig is “communitystory” rather than the verticalKey which is “community_stories”

"verticalsToConfig": {
    "communitystory": { // The vertical key from your search configuration
      "label": "Community Stories",
      // "verticalLimit": 15, // The result count limit for vertical search
      // "universalLimit": 5, // The result count limit for universal search
      "cardType": "communitystory", // The name of the card to use - e.g. accordion, location, customcard 
      "icon": "star", // The icon to use on the card for this vertical
      "universalSectionTemplate": "standard"
    }
}

Let us know if that resolves and if you have any other questions as you complete the challenge!

Best,
Alyssa

1 Like

Thank you so much Alyssa!

It helped to complete the challange :slight_smile: