Anyone know a way that you can provide some sample data to show on the metadata page in ServiceStack for your response models?
For this response model
public class GetIncidentResponse
{
public IEnumerable<Incident> Incidents { get; set; }
}
I'm getting this on the metadata page
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{}
When I'd like to be able to display something like
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{ "Filter example 1", "Filter example 2"}