Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1044)

Side by Side Diff: appengine/ephelper/epfrontend/discovery_testdata/basic_backend.json

Issue 1750143003: Remove ephelper and other endpoints code. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "description": "A testing API",
3 "descriptor": {
4 "methods": {
5 "Test": {
6 "response": {
7 "$ref": "TestResponse"
8 }
9 }
10 },
11 "schemas": {
12 "TestResponse": {
13 "description": "Test Method Response",
14 "id": "TestResponse",
15 "properties": {
16 "value": {
17 "$ref": "ValueType"
18 }
19 },
20 "type": "object",
21 "types": "object"
22 }
23 }
24 },
25 "methods": {
26 "test": {
27 "description": "API Test Method",
28 "httpMethod": "POST",
29 "path": "testMethod/{value}",
30 "request": {
31 "body": "empty",
32 "parameters": {
33 "value": {
34 "required": true,
35 "type": "string"
36 }
37 }
38 },
39 "response": {
40 "body": "autoTemplate(backendRequest)",
41 "bodyName": "resource"
42 },
43 "rosyMethod": "Test"
44 }
45 },
46 "name": "testapi",
47 "root": "foo",
48 "version": "v2"
49 }
OLDNEW
« no previous file with comments | « appengine/ephelper/epfrontend/discovery_test.go ('k') | appengine/ephelper/epfrontend/discovery_testdata/basic_frontend.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698