RMC OData is a queryable version of research.microsoft.com (RMC) data, produced in the OData protocol (see odata.org for more information about the OData protocol). RMC data provides metadata about assets currently published on research.microsoft.com, such as publications, projects, and downloads.
http://odata.research.microsoft.com/odata.svc/Downloads/
- This query returns all Microsoft Research Downloads.
http://odata.research.microsoft.com/odata.svc/Videos/
- This query returns all Microsoft Research Videos.
http://odata.research.microsoft.com/odata.svc/Downloads(77034)/
- This query returns the metadata for a specific Microsoft Research Download, in this case for asset ID 77034. Note that some browsers return a .part file, which can be opened in text editors or other tools to examine. Generally this workflow is unnecessary when querying for specific assets from applications.
http://odata.research.microsoft.com/odata.svc/Videos(154104)/
- This query returns the metadata for the specific Microsoft Research Video 154104.
http://odata.research.microsoft.com/odata.svc/Downloads(77034)/Users/
- This query returns all Microsoft Research staff related to Microsoft Research Download 77034.
http://odata.research.microsoft.com/odata.svc/Videos(154104)/Speakers/
- This query returns all speakers related to Microsoft Research Video 154104.
http://odata.research.microsoft.com/odata.svc/Projects/?$filter=substringof('cloud', Description) eq true
- This query returns Microsoft Research Projects which contain ‘cloud’ in in their metadata.
http://odata.research.microsoft.com/odata.svc/Videos/?$select=Url,Duration,Name&$orderby=Duration desc&$filter=Duration ge 4900
- This query returns only the name, duration, and URL of the Microsoft Research Videos with duration greater than 4900 seconds, ordered by descending duration.
http://odata.research.microsoft.com/odata.svc/Videos/?$filter=year(DateRecorded) eq 2012
- This query returns Microsoft Research Videos which were recorded in 2012.
http://odata.research.microsoft.com/odata.svc/Videos/?search=farming
- This query returns Microsoft Research Videos with ‘farming’ in the metadata.
http://odata.research.microsoft.com/odata.svc/Series(105128)/Videos
- This query returns all Microsoft Research Videos related to the Visiting Speakers series (id 105128).
For complete information about the system query options supported by the OData protocol, refer to http://www.odata.org/developers/protocols/uri-conventions#OrderBySystemQueryOption.
Feedback on RMC OData can be sent to rmcodata-feedback@microsoft.com.