API 設計でサブフィールドを呼び出す良い方法を決定しようとしていました。
次のオブジェクトの例を見てください。
例えば。
<Car>
<Name/>
<Type/>
<Components>
<count>1</count>
<Wheel>
<Location></Location>
<Brand></Brand>
</Wheel>
</Components>
</Car>
?fields=name,Components :group(Components :Count,Wheel:group(Wheel :Location,brand))
また
?fields= 名前,Components.Count,Components.Wheel.Location,Components.Wheel.Brand
ここでのベストプラクティスを知っている人はいますか?