I recently started playing with the new api webpage page features that were recently added to the api web project template. And I noticed that in the "More Information" column is always "no."

After some consideration of the markup, I found that this information should come from attributes
<td class="parameter-annotations"> @if (parameter.Annotations.Count > 0) { foreach (var annotation in parameter.Annotations) { <p>@annotation.Documentation</p> } } else { <p>None.</p> } </td>
But what attribute should I use to fill out additional information? Thanks
source share