├── uber-apps └── tasks │ ├── Procfile │ ├── package.json │ ├── index.html │ ├── README.md │ ├── tasks-alps.xml │ ├── tasks.js │ └── app.js ├── includes ├── error-sample.xml ├── error-sample.js ├── message-model.xml ├── uber-query-string.txt ├── search-sample.xml ├── uber-request-body.txt ├── search-sample.js ├── full-example.xml └── full-example.js ├── README.md ├── uber-hypermedia.html └── uber-hypermedia.asciidoc /uber-apps/tasks/Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js -------------------------------------------------------------------------------- /uber-apps/tasks/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tasks-hypermedia", 3 | "version": "1.0.0" 4 | } 5 | -------------------------------------------------------------------------------- /includes/error-sample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | q1w2e3 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /includes/error-sample.js: -------------------------------------------------------------------------------- 1 | { 2 | "uber" : 3 | { 4 | "version" : "1.0", 5 | "error" : 6 | { 7 | "data" : 8 | [ 9 | {"name" : "code", "value" : "q1w2e3"}, 10 | {"name" : "dump", "url" : "http://example.org/debug/1"} 11 | ] 12 | } 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **NOTE: The UBER document is no longer maintained. It is here for historical reasons ONLY** 2 | 3 | UBER's new home: https://github.com/uber-hypermedia/specification 4 | 5 | Read the most recent spec document here: http://g.mamund.com/uber 6 | 7 | 8 | # Media Types 9 | 10 | A collection of media-type designs 11 | 12 | 13 | -------------------------------------------------------------------------------- /includes/message-model.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /uber-apps/tasks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tasks UBER 4 | 8 | 9 | 10 |

Tasks UBER

11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /includes/uber-query-string.txt: -------------------------------------------------------------------------------- 1 | 2 |