-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencodeDecode.json
67 lines (67 loc) · 1.33 KB
/
encodeDecode.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"swagger": "2.0",
"info": {
"description": "Because sometimes you need to encode some things",
"version": "1.0.0",
"title": "Encode or Decode URI"
},
"host": "ntxfucntions.azurewebsites.net",
"basePath": "/api",
"schemes": [
"https"
],
"paths": {
"/encodeDecode": {
"post": {
"x-ntx-summary": "Encode or Decode a URI",
"description": "",
"operationId": "encodeURI",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"description": "",
"required": true,
"schema": {
"$ref": "#/definitions/req"
}
}
],
"responses": {
"200": {
"description": "Hooray!",
"schema": {
"type": "string"
}
},
"405": {
"description": "Invalid input"
}
}
}
}
},
"definitions": {
"req": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"method": {
"type": "string",
"enum": [
"Encode",
"Decode"
]
}
}
}
}
}