-
Notifications
You must be signed in to change notification settings - Fork 5
/
intento.openapi.json
483 lines (483 loc) · 16.2 KB
/
intento.openapi.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
{
"basePath": "/",
"consumes": [
"application/json"
],
"externalDocs": {
"url": "https://api.inten.to"
},
"securityDefinitions": {
"APIKeyHeader": {
"type": "apiKey",
"in": "header",
"name": "apikey"
}
},
"security": [
{
"APIKeyHeader": []
}
],
"host": "api.inten.to",
"info": {
"description": "Translate a text from one language to another.",
"title": "ai.text.translate",
"version": "1.0"
},
"paths": {
"/ai/text/translate": {
"get": {
"summary": "Get a list of available service providers",
"description": "Get a list of available service provider identifiers for this intent. If context parameters are specified, the reponse contains only providers that meet all restrictions implied by the context (conjunction)",
"parameters": [
{
"in": "query",
"name": "from",
"required": false,
"description": "Source language",
"format": "iso639code",
"type": "string"
},
{
"in": "query",
"name": "to",
"required": false,
"description": "Target language",
"format": "iso639code",
"type": "string"
},
{
"in": "query",
"name": "domain",
"required": false,
"description": "Translation domain",
"type": "string"
},
{
"in": "query",
"name": "bulk",
"required": false,
"description": "Bulk translate option",
"type": "boolean"
},
{
"in": "query",
"name": "billing",
"required": false,
"description": "Billing avaliable via Intento",
"type": "boolean"
}
],
"responses": {
"200": {
"description": "List of available providers",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Service provider id",
"example": "ai.text.translate.google.translate_api.v3"
},
"name": {
"type": "string",
"description": "Service provider print name",
"example": "Google Cloud Translation API"
},
"score": {
"type": "number",
"description": "Estimated performance score in (0,1]"
},
"price": {
"type": "number",
"description": "Estimated price per 1 million characters, USD"
}
}
}
}
},
"400": {
"description": "Something went wrong"
}
}
},
"post": {
"summary": "Translates a text string from one language to another",
"description": "Translates a text string from one language to another",
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"type": "object",
"example": {
"context": {
"text": "API economy (application programming interface economy) is a general term that describes the way application programming interfaces (APIs) can positively affect an organization's profitability . An API is a customer interface for technology products that allows software components to communicate.",
"to": "es"
}
},
"required": [
"context"
],
"properties": {
"context": {
"description": "Input data for the intent fulfillment",
"type": "object",
"required": [
"text",
"to"
],
"properties": {
"text": {
"description": "Text to translate",
"allOf": [
{
"type": "string"
},
{
"items": [
{
"type": "string"
}
],
"type": "array"
}
]
},
"to": {
"description": "Target language",
"format": "iso639code",
"type": "string"
},
"from": {
"description": "Source language",
"format": "iso639code",
"type": "string",
"default": "auto"
},
"category": {
"description": "Translation domain",
"type": "string",
"enum": [
"general"
],
"default": "auto"
}
}
},
"service": {
"description": "Service parameters related to the Intento Platform: I/O formats etc",
"type": "object",
"properties": {
"provider": {
"description": "Provider identificator to use for the request. A list of the available providers is returned by the GET request. If not specified, the provider is selected according to the bidding policy",
"type": "string"
},
"bidding": {
"description": "Policy to select the provider if it is not specified. The default value is 'auto'",
"type": "string",
"default": "auto"
},
"multiple_translations": {
"description": "Return multiple translations for a single text",
"type": "boolean",
"default": false
},
"input_format": {
"description": "Input text content type",
"type": "string",
"enum": [
"text/plain",
"text/html"
],
"default": "auto"
},
"output_format": {
"description": "Output text content type",
"type": "string",
"enum": [
"text/plain",
"text/html"
],
"default": "auto"
},
"pretty_print": {
"description": "Human-friendly output",
"type": "boolean",
"default": false
}
}
}
}
}
}
],
"responses": {
"200": {
"description": "Translated text",
"schema": {
"$ref": "#/definitions/Response"
}
},
"400": {
"description": "Something went wrong"
}
}
}
},
"/ai/text/translate/{id}": {
"get": {
"summary": "Get information about a provider",
"description": "The response contains a list of the metadata fields and values available for the provider",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"description": "Provider id",
"default": "ai.text.translate.google.translate_api.v3",
"type": "string"
}
],
"responses": {
"200": {
"description": "List of available providers",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Service provider id",
"example": "ai.text.translate.google.translate_api.v3"
},
"name": {
"type": "string",
"description": "Service provider name",
"example": "Google Cloud Translation API"
},
"logo": {
"type": "string",
"description": "Service provider logo",
"example": "https://inten.to/img/api/ggl_translate.png"
},
"languages": {
"description": "Supported languages",
"type": "object",
"example": {
"symmetric": [
"en",
"es"
],
"pairs": [
[
"en",
"de"
]
]
}
}
}
}
}
},
"400": {
"description": "Something went wrong"
}
}
}
},
"/ai/text/translate/languages": {
"get": {
"summary": "Get list of supported languages",
"description": "Will return an array of supported languages",
"parameters": [
{
"in": "query",
"name": "locale",
"required": false,
"description": "Locale",
"default": "ru",
"type": "string"
}
],
"responses": {
"200": {
"description": "List of supported languages",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"iso_code": {
"type": "string",
"description": "Service provider id",
"example": "he"
},
"name": {
"type": "string",
"example": "иврит"
},
"intento_code": {
"type": "string",
"description": "Service provider name",
"example": "he"
},
"client_code": {
"type": "string",
"description": "Service provider logo",
"example": "hebr"
}
}
}
}
},
"400": {
"description": "Something went wrong"
}
}
}
},
"/ai/text/translate/languages/{id}": {
"get": {
"summary": "Get full information on the supported language",
"description": "For a given language code (intento internal or client’s) will show full metadata",
"parameters": [
{
"in": "path",
"name": "id",
"required": true,
"description": "Language id",
"default": "he",
"type": "string"
},
{
"in": "query",
"name": "locale",
"required": false,
"description": "Locale",
"default": "ru",
"type": "string"
}
],
"responses": {
"200": {
"description": "Full description",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"iso_name": {
"type": "string",
"example": "Hebrew (modern)"
},
"name": {
"type": "string",
"example": "иврит"
},
"intento_code": {
"type": "string",
"example": "he"
},
"iso_639_1_code": {
"type": "string",
"example": "heb"
},
"iso_639_2t_code": {
"type": "string",
"example": "heb"
},
"iso_639_2b_code": {
"type": "string",
"example": "heb"
},
"iso_639_3_code": {
"type": "string",
"example": "heb"
},
"client_code": {
"type": "string",
"example": "hebr"
},
"provider_codes": {
"type": "object",
"example": {
"ai.text.translate.google.translate_api.v3": "iw"
}
}
}
}
}
},
"400": {
"description": "Something went wrong"
}
}
}
}
},
"definitions": {
"Response": {
"type": "object",
"properties": {
"results": {
"description": "Translated text",
"allOf": [
{
"type": "string"
},
{
"items": [
{
"type": "string"
}
],
"type": "array"
}
]
},
"service": {
"description": "Service information regarding the intent fulfillment",
"type": "object",
"properties": {
"provider": {
"description": "Service provider that fulfilled the intent",
"type": "object",
"properties": {
"id": {
"description": "Service provider ID on the Intento Platform",
"type": "string"
},
"name": {
"description": "Service provider print name",
"type": "string"
}
}
}
}
}
},
"example": {
"results": "La API de economía (interfaz de programación de aplicaciones de la economía) es un término general que describe la manera de interfaces de programación de aplicaciones (Api) puede afectar positivamente la organización de la rentabilidad . Una API es una interfaz de cliente para los productos de tecnología que permite a los componentes de software para comunicarse.",
"service": {
"provider": {
"id": "ai.text.translate.yandex.translate_api.1-5",
"name": "Yandex"
}
}
}
}
},
"produces": [
"application/json"
],
"schemes": [
"https"
],
"swagger": "2.0"
}