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

Side by Side Diff: appengine/ephelper/epfrontend/discovery_testdata/query_get_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 "request": {
7 "$ref": "TestRequest"
8 }
9 }
10 },
11 "schemas": {
12 "TestRequest": {
13 "description": "Test Method Request",
14 "id": "TestRequest",
15 "properties": {
16 "value": {
17 "$ref": "ValueType"
18 }
19 },
20 "type": "object"
21 }
22 }
23 },
24 "methods": {
25 "test": {
26 "description": "API Test Method",
27 "httpMethod": "GET",
28 "path": "testMethod",
29 "request": {
30 "body": "autoTemplate(backendRequest)",
31 "bodyName": "resource",
32 "parameters": {
33 "value": {
34 "required": true,
35 "type": "string"
36 }
37 }
38 },
39 "response": {
40 "body": "empty"
41 },
42 "rosyMethod": "Test"
43 }
44 },
45 "name": "testapi",
46 "root": "foo",
47 "version": "v2"
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698