vote up 0 vote down star
2

Hi,

I'm developing a REST API and I have a question about resource representations.

Suppose I got the "person" resource under the /app/person/{id} URI. I need an XML representation, that basically is all the object fields as XML nodes under the root. Now requirements indicate that we must also support another kind of XML representation enforced by a proprietary schema.

The question is: is it under REST best practices to support a proprietary content type like "text/my-type" for the same resource? note that both are XML but formatted differently, and most important they don't carry the same information (eg. one representation may include other fields like "modified-since")

Important!: I know that being pragmatic and keeping it simple it's more important than guides and "best practices" but I just wanted to know if that's the way to go under a RESTful architecture.

flag

78% accept rate
1  
If you are specifying a URI naming scheme in your API (like /app/person/{id}) then your API is RPC, not REST. – Wahnfrieden Aug 18 at 14:05
@Wahnfrieden Could you explain why a URI naming scheme means RPC. I disagree with you. /app/person/{id} is a reference to a person resource. The URI does nothing except illustrates where the person resource can be found, which is perfectly RESTful. An RPC URI would be something like /app/dancing/dothefunkychicken?personid={id} as you are using the URI to invoke an action. – Benedict Cohen Aug 18 at 15:34
2  
@pablo Yes @Wahnfrieden does know what REST is. The problem is that many people are trying to define REST API's like they define RPC APIs, by defining a set of endpoints. REST APIs don't work this way. REST API design should be focused on the definition of the media types. What the endpoints are is completely irrelevant to the client and the RESTfulness of the API. However, the server implementation does care about the URLs, so it is difficult to get people to ignore them whilst doing the design. – Darrel Miller Aug 18 at 20:36
1  
@Pablo Correct. The client should not know the url structure. As an exercise, next time you want to build a REST interface, do it like you do TDD. Create the client first and use a stub for the server. Make the client get the URLs from the retrieved representations. You will quickly see that the client does not care what the urls look like. Now go and implement the real server using whatever url structure is the easiest. The client code should not change. – Darrel Miller Aug 19 at 16:02
1  
@Pablo I wish there were some good examples of implementing REST clients to point you to. Maybe one day I will get around to trying to write one. Until then, think about how a web browser is able to allow you do so much on a web site that it knows nothing about. – Darrel Miller Aug 20 at 15:13
show 12 more comments

4 Answers

vote up 3 vote down check

Yes and no. There are no REST constraints that prevent you from returning two different representations of a resource from the same URL. Even, if one media type is a proprietary format. Be careful about allowing the content to vary too much, I hear that some people get pretty upset about that. Also, for the custom formats you should use a media type under the vendor subtree

e.g. application/vnd.companyname.format+xml

However, it is not really in the spirit of REST to return proprietary formats. That being said, you can do with without any problems other than limiting serendipitous re-use.

link|flag
REST has no issues with proprietary formats - HATEOS actually describes this scenario perfectly. A client who wants to interact with a RESTful service need only know the media types returned by that service (whether they be jpeg, Atom XML, Word docs, etc...) – Gandalf Aug 18 at 18:27
vote up 1 vote down

If these are just two different representations of a Person resource, then you ought to have two media types for them. If at all possible try to find and reuse standard representations and their media types (see http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven). Both media types should have the form application/type+xml (and see Darrel's comment).

link|flag
2  
Custom types based on xml are named application/type+xml. If you are creating your own custom type then usually they are created under the vendor subtree. e.g. application/vnd.mycompany.mytype+xml – Darrel Miller Aug 18 at 12:31
Thanks Darrel, I've flipped "xml" and "type". – Jim Ferrans Aug 18 at 15:00
Thanks Jim, link is broken though – Pablo Fernandez Aug 18 at 20:11
Sorry Pablo, corrected link. It wasn't my day! – Jim Ferrans Aug 19 at 5:10
@Darrel I was wondering why xml doesn't come before the vendor tree - application/xml+vnd.mycompany.mytype ? Then clients which handle any type of XML, even just a simple XML prettifier, could easily see that it is an application media type, and using XML, and then it further specializes into a vendor specific space. This makes more sense to me, unless the content-type specifications instruct clients to ignore what comes between the / and + if they don't care about vendor specific specializations or something wacky like that. – Wahnfrieden Aug 19 at 14:51
show 2 more comments
vote up 1 vote down

If the second format is simply a different syntax (or can reasonably be viewed as such), it's perfectly fine (and RESTful and in compliance with REST best practices) to add it as a second representation with another media type. If you consider the difference to be more than syntactical, you should probably create a different resource. The same is true if you want to be able to link to a specific representation (because it needs a different URI if you want to do so). In this latter case, you might want to consider a canonical, format-independent resource as well that can return a 303 See Other with links to the specific ones.

link|flag
vote up 0 vote down

Content Negotiation is built into HTTP using the Accept and Accept-Encoding headers. The client apps should specify what type they want returned by setting these headers.

link|flag
This does not answer what I asked... seems like a comment more than an answer – Pablo Fernandez Aug 18 at 20:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.