[[Go]]の[[構造体 (Go)|構造体]]に記述でき、[[リフレクション]]で検出できるメタデータ。 ```go // `exhaustruct:"optional"` は構造体タグ type Human struct { Id int Name string Favorite *string `exhaustruct:"optional"` } ```