Project

Profile

Help

Story #5788

Updated by chouseknecht over 4 years ago

Return a _content_match_ `content_match` object similar to that found in v2 API search results. As an example, if the user searches for "dynatrace" the The v2 API currently returns the following object for each item contained in _collections.results[]_: `collections.results[]`: 

 <pre> ``` 
 content_match": "content_match": { 
     
                     "total_count": 4, 
     
                     "contents": { 
         
                         "module": [ 
             
                             "dynatrace_deployment", 
             
                             "dynatrace_comment" 
             
                         ], 
         
                         "role": [ 
             
                             "dynatrace_custom_deployment", 
             
                             "dynatrace_problem_comment" 
             
                         ], 
         
                         "plugin": [] 
         
                     } 
    
                 } 
 </pre> ```

Back