Created
June 16, 2011 10:08
-
-
Save mikekelly/1028986 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource href="/"> | |
<motd>Welcome. Today's special offer: by 600 flat whites and get an extra free.</motd> | |
<link rel="rb:orderList" href="/order-list" /> | |
</resource> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource href="/order-list" xmlns:rb="http://restbucks.com/rels/"> | |
<resource rel="rb:order" href="..."> | |
<location /> | |
<notes /> | |
<link rel="rb:customer" href="..." /> | |
<resource rel="rb:status" href="..."> | |
<status>placed</status> | |
</resource> | |
<resource rel="rb:payment" href="..."> | |
<due /> | |
<paid /> | |
<discount /> | |
</resource> | |
<resource rel="rb:lineItem" href="..."> | |
<type /> | |
<quantity /> | |
<size /> | |
</resource> | |
<resource rel="rb:lineItem" href="..."> | |
<type /> | |
<milk /> | |
<quantity /> | |
<size /> | |
</resource> | |
</resource> | |
<resource rel="rb:order" href="..."> | |
<location /> | |
<notes /> | |
<link rel="rb:customer" href="..." /> | |
<resource rel="rb:status" href="..."> | |
<status>cancelled</status> | |
</resource> | |
<resource rel="rb:payment" href="..."> | |
<due /> | |
<paid /> | |
<discount /> | |
</resource> | |
<resource rel="rb:lineItem" href="..."> | |
<type /> | |
<milk /> | |
<sugar /> | |
<quantity /> | |
<size /> | |
</resource> | |
<resource rel="rb:lineItem" href="..."> | |
<type /> | |
<quantity /> | |
<size /> | |
</resource> | |
</resource> | |
</resource> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment