Last active
August 29, 2015 14:04
-
-
Save maxlinc/6732cb9dc1cc05e1a85a to your computer and use it in GitHub Desktop.
examples
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
--- | |
examples: | |
application/json: | |
category: | |
name: domestic | |
id: 9 | |
name: monster | |
status: alive | |
tags: | |
- | |
name: "for sale" | |
application/xml: |- | |
<animal> | |
<category> | |
<name>domestic</name> | |
</category> | |
<id>9</id> | |
<name>monster</name> | |
<status>alive</status> | |
<tags> | |
<name>for sale</name> | |
</tags> | |
<animal> |
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
--- | |
examples: | |
- contentType: application/json | |
content: | |
category: | |
name: domestic | |
id: 9 | |
name: monster | |
status: alive | |
tags: | |
- | |
name: "for sale" | |
- contentType: application/xml | |
content: |- | |
<animal> | |
<category> | |
<name>domestic</name> | |
</category> | |
<id>9</id> | |
<name>monster</name> | |
<status>alive</status> | |
<tags> | |
<name>for sale</name> | |
</tags> | |
<animal> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment