In parsing the resource search results JSON object I found that there is a key mismatch for the ed_frameworks element of the facets element. Specifically, the facet key is ed_frameworks, but it should be ed_frameworks.name as that is the corresponding key that should be used in query composition. Since the values that are being returned are the name elements within the ed_frameworks object they should be labeled using the platform's "dot" naming convention. This will allow for the proper autogeneration of the client facets with the correct key to use when building a search that includes the ed_frameworks.name key.
In its current state this key error is contributing to a client error in which auto-generated searches that include the ed_frameworks key return 0 results.
In parsing the resource search results JSON object I found that there is a key mismatch for the
ed_frameworks
element of the facets element. Specifically, the facet key ised_frameworks
, but it should beed_frameworks.name
as that is the corresponding key that should be used in query composition. Since the values that are being returned are thename
elements within theed_frameworks
object they should be labeled using the platform's "dot" naming convention. This will allow for the proper autogeneration of the client facets with the correct key to use when building a search that includes theed_frameworks.name
key.In its current state this key error is contributing to a client error in which auto-generated searches that include the
ed_frameworks
key return 0 results.