Is it RESTful to limit resource properties? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T02:11:42Zhttp://stackoverflow.com/feeds/question/495212http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/495212/is-it-restful-to-limit-resource-properties1Is it RESTful to limit resource properties?LiorH2009-01-30T11:26:49Z2009-01-31T00:34:23Z
<p>Our resources consists of dozens of fields (attributes). Some of our clients don't need all resource's properties. To save network payload we implemented a query string parameter to limit the resource properties.
So for example, the next URL will return a collection of resources with all their fields:</p>
<p><a href="http://myapp/myresources" rel="nofollow">http://myapp/myresources</a></p>
<p>But when the client needs only specific fields he can do that by calling:</p>
<p><a href="http://myapp/myresources?fields=f1,f2,f13,f22" rel="nofollow">http://myapp/myresources?fields=f1,f2,f13,f22</a></p>
<p>Our architect argues that this approach is not RESTful.</p>
<p>What do you think?</p>
http://stackoverflow.com/questions/495212/is-it-restful-to-limit-resource-properties/495260#4952601Answer by Milan Novota for Is it RESTful to limit resource properties?Milan Novota2009-01-30T11:47:46Z2009-01-30T11:47:46Z<p>It would be RESTful if you implemented it as new media types (representations) of the same resource. It would be an incomplete representation, but still, a representation. Let's say you have this resource:</p>
<p>/myapp/myresources</p>
<p>which is a collection of complete representations of some kind of resource.
It's perfectly ok to have a different representation of the same collection. However, if you want it to be REST compliant, you should implement it as a new media type (format).</p>
<p>Then, you can query the collection with Accept header set to your desired media type, or you can use "media type in extension style" - eg. /myapp/myresources.f1_f2_f3.</p>
<p>Your situation is a bit tricky, since your media types would be invented on the fly, but I think it's not impossible.</p>
http://stackoverflow.com/questions/495212/is-it-restful-to-limit-resource-properties/497841#4978411Answer by Peter Hilton for Is it RESTful to limit resource properties?Peter Hilton2009-01-31T00:34:23Z2009-01-31T00:34:23Z<p>The question goes away if you stop making the distinction between resources and fields.</p>
<p>If resource <code>/myresource</code> has two 'sub-resources' <code>/myresource/f1</code> and <code>/myresource/f2</code>, then it makes sense to get both at once by specifying a list: <code>/myresource/f1,f2</code>.</p>