type User struct {
Id int
Password string `filtered:"true"`
}
Referring to the filtered: "true"
part. Never seen this anywhere else, and can't find anything in the spec about it. Presumably it's similar to not exporting a field?
Does anyone have more information?