forked from microsoft/PowerPlatformConnectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiDefinition.swagger.json
90 lines (90 loc) · 2.42 KB
/
apiDefinition.swagger.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"swagger": "2.0",
"info": {
"title": "Did You Mean This",
"description": "Google's famed \"Did you mean this?\" feature is a powerful feature to guide your users for corrections easily. This service features a fast and convenient way to embed this feature into your application.",
"version": "1.0",
"contact": {
"name": "Troy Taylor",
"url": "https://www.hitachisolutions.com",
"email": "[email protected]"
}
},
"host": "api.apilayer.com",
"basePath": "/dymt/",
"schemes": [
"https"
],
"consumes": [],
"produces": [],
"paths": {
"/did_you_mean_this": {
"get": {
"responses": {
"200": {
"description": "default",
"schema": {
"type": "object",
"properties": {
"is_modified": {
"type": "boolean",
"description": "Whether is modified from the original request text.",
"title": "Is Modified"
},
"original_text": {
"type": "string",
"description": "The original text.",
"title": "Original Text"
},
"result": {
"type": "string",
"description": "The result.",
"title": "Result"
}
}
}
}
},
"summary": "Check text",
"description": "Retrieves a suggestion for the provided text.",
"operationId": "Check",
"parameters": [
{
"name": "q",
"in": "query",
"x-ms-summary": "Text",
"description": "The text.",
"required": true,
"type": "string"
}
]
}
}
},
"definitions": {},
"parameters": {},
"responses": {},
"securityDefinitions": {
"api_key": {
"type": "apiKey",
"in": "header",
"name": "apikey"
}
},
"security": [],
"tags": [],
"x-ms-connector-metadata": [
{
"propertyName": "Website",
"propertyValue": "https://apilayer.com/marketplace/dymt-api"
},
{
"propertyName": "Privacy policy",
"propertyValue": "https://apilayer.com/support"
},
{
"propertyName": "Categories",
"propertyValue": "Data"
}
]
}