Module Assesment for Module 13

Hi fellow Hitchhikers!

I’m having a problem with the module assessment.

I have passed all the other challenges except this one:

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

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”: “community_stories”, // 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
},
/
/

“DirectAnswer”: {
“types”: {
“FEATURED_SNIPPET”: {
“cardType”: “documentsearch-standard”
},
“FIELD_VALUE”: {
“cardType”: “allfields-standard”
}
}
},
**/
“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
“loadingIndicator”: {
“display”: true //Optional, whether to include a loading indicator on seachbar
// “iconUrl”: “” //Optional, use custom icon url instead of the default loading indicator animation
},
“voiceSearch”: {
“enabled”: false // Whether or not voice search is enabled
// “customMicIconUrl”: “”, // Path to override the voice start icon
// “customListeningIconUrl”: “” // Path to override the voice stop icon
}
},
“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”
}
}
}

Does anyone have any idea what could be wrong?

Thank you so much in advance!

Best,

Lupillo Andazola

Hi Lupillo,

Thanks for posting in the community. You’re so close! For the Restaurant page template “Turtlehead Tacos Restaurant Pages” - There should be no - Announcement Bar - module.

Try resubmitting the challenge and let me know if you have any other questions.

Adam

1 Like

HI Adam,

Thank you for answering. I deleted the Announcement Bar module but the report card still shows the same mistake. Is there something else I’m missing? Thanks!!

Lupillo,

It seems as though I was referencing another challenge account - Apologies! The error you received

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

is correlated with an incorrect naming convention on the front end. You initially created a vertical key labeled community_stories. This vertical key needs to match the verticalsToConfig in line 78 in the file communitystories.json. Try renaming the vertical key in line 78 to community_stories and you should be good to go!

I’ve attached a screenshot for reference below.

Adam

Thank you! That solved it!!