Created
March 4, 2012 22:13
-
-
Save mikekelly/1975080 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
{ | |
"_links": { | |
"self": { "href": "..." }, | |
"productions": { "href": "..." } | |
} | |
} |
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
{ | |
"_links": { | |
"self": { "href": "..." }, | |
"filter": { "href": "...{?categories}" } // note: this is a URI template | |
}, | |
"categories": ["Microsoft", "Ruby", "Javascript", "Mobile"], | |
"_embedded": { | |
"videos": [{ | |
"_links": { | |
"self": { "href": "..." }, | |
"episodes": { "href": "..." } | |
}, | |
"title": "Real World ASP.NET MVC3", | |
"description": "In this advanced, somewhat-opinionated production you'll get your very own startup off the ground using ASP.NET MVC 3...", | |
"permitted": true | |
},{ | |
"_links": { | |
"self": { "href": "..." }, | |
"episodes": { "href": "..." } | |
}, | |
"title": "Example Video 2", | |
"description": "Lorem ipsum dolor sit amet, consectetur adipisicing elit", | |
"permitted": false | |
},{ | |
"_links": { | |
"self": { "href": "..." }, | |
"episodes": { "href": "..." } | |
}, | |
"title": "Example Video 3", | |
"description": "Lorem ipsum dolor sit amet, consectetur adipisicing elit", | |
"permitted": false | |
}] | |
} | |
} |
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
{ | |
"_links": { | |
"self": { "href": "..." } | |
}, | |
"title": "Real World ASP.NET MVC3", | |
"description": "In this advanced, somewhat-opinionated production you'll get your very own startup off the ground using ASP.NET MVC 3...", | |
"permitted": true, | |
"_embedded": { | |
"episodes": [{ | |
"_links": { | |
"self": { "href": "..." }, | |
"media": [{ | |
"type": "video/webm; codecs='vp8.0, vorbis'", | |
"href": "..." | |
},{ | |
"type": "video/ogg; codecs='theora, vorbis'", | |
"href": "..." | |
}] | |
}, | |
"title": "Foundations", | |
"description": "In this episode we talk about what it is we're doing: building our startup and getting ourselves off the ground. We take..", | |
"released": 1306972800 | |
},{ | |
"_links": { | |
"self": { "href": "..." }, | |
"media": [{ | |
"type": "video/webm; codecs='vp8.0, vorbis'", | |
"href": "..." | |
},{ | |
"type": "video/ogg; codecs='theora, vorbis'", | |
"href": "..." | |
}] | |
}, | |
"title": "Membership", | |
"description": "In this episode Rob hooks up testing in an effort to deal with ASP.NET Membership. The team has decided..", | |
"released": 1306972800 | |
}] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment