func (h *ServiceInstance) sortList(siList []repositories.ServiceInstanceRecord, order string) {
    switch order {
    case "":
    case "created_at":
        sort.Slice(siList, func(i, j int) bool { return timePtrAfter(&siList[j].CreatedAt, &siList[i].CreatedAt) })