-
Notifications
You must be signed in to change notification settings - Fork 5
/
ai.text.translate.openapi.json
565 lines (565 loc) · 26.4 KB
/
ai.text.translate.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
{
"openapi": "3.0.0",
"externalDocs": {
"url": "https://github.com/intento/intento-api"
},
"security": [
{
"APIKeyHeader": []
}
],
"servers": [
{
"url": "https://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 response contains only providers that meet all restrictions implied by the context (conjunction)",
"parameters": [
{
"in": "query",
"name": "from",
"required": false,
"description": "Source language",
"schema": {
"type": "string",
"format": "iso639code"
}
},
{
"in": "query",
"name": "to",
"required": false,
"description": "Target language",
"schema": {
"type": "string",
"format": "iso639code"
}
},
{
"in": "query",
"name": "category",
"required": false,
"description": "Translation domain <a href='https://github.com/intento/intento-api/blob/master/ai.text.translate.md#translation-domains'>check out docs</a>",
"schema": {
"type": "string"
}
},
{
"in": "query",
"name": "bulk",
"required": false,
"description": "Bulk translate option",
"schema": {
"type": "boolean"
}
},
{
"in": "query",
"name": "format",
"required": false,
"description": "Supported input format",
"schema": {
"type": "string",
"enum": [
"text",
"html",
"xml"
],
"default": "text"
}
},
{
"in": "query",
"name": "billing",
"required": false,
"description": "Billing available via Intento",
"schema": {
"type": "boolean"
}
}
],
"responses": {
"200": {
"description": "List of available providers",
"content": {
"application/json": {
"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",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TranslateRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Translated text",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TranslateResponse"
}
}
}
},
"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",
"schema": {
"type": "string",
"default": "ai.text.translate.google.translate_api.v3"
}
}
],
"responses": {
"200": {
"description": "Information about a specified provider",
"content": {
"application/json": {
"schema": {
"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",
"properties": {
"symmetric": {
"description": "Translation is available in both directions",
"type": "array",
"items": {
"type": "string",
"format": "iso639code"
}
},
"pairs": {
"description": "Translation is available in a specified direction",
"type": "array",
"items": {
"type": "object",
"properties": {
"from": {
"type": "string",
"format": "iso639code"
},
"to": {
"type": "string",
"format": "iso639code"
}
}
}
}
},
"example": {
"symmetric": [
"en",
"es"
],
"pairs": [
{
"from": "en",
"to": "de"
},
{
"from": "fr",
"to": "en"
}
]
}
}
}
}
}
}
},
"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",
"schema": {
"type": "string",
"default": "ru"
}
}
],
"responses": {
"200": {
"description": "List of supported languages",
"content": {
"application/json": {
"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",
"schema": {
"type": "string",
"default": "he"
}
},
{
"in": "query",
"name": "locale",
"required": false,
"description": "Locale",
"schema": {
"type": "string",
"default": "ru"
}
}
],
"responses": {
"200": {
"description": "Full description",
"content": {
"application/json": {
"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"
}
}
}
}
},
"components": {
"securitySchemes": {
"APIKeyHeader": {
"type": "string",
"in": "header",
"name": "apikey"
}
},
"schemas": {
"TranslateRequest": {
"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",
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"to": {
"description": "Target language",
"format": "iso639code",
"type": "string"
},
"from": {
"description": "Source language",
"format": "iso639code",
"type": "string",
"default": "auto"
},
"format": {
"description": "Input format",
"type": "string",
"enum": [
"text",
"html",
"xml"
],
"default": "text"
},
"category": {
"description": "Translation domain",
"type": "string"
}
}
},
"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"
},
"routing": {
"description": "Policy to select the provider if it is not specified. The default value is 'best'",
"type": "string",
"enum": [
"best",
"best_quality",
"best_price"
],
"default": "best"
},
"multiple_translations": {
"description": "Return multiple translations for a single text",
"type": "boolean",
"default": false
},
"processing": {
"description": "Makes the result prettier according to specified rule sets",
"type": "object",
"properties": {
"pre": {
"description": "Pre-processing rule names. Find available with /settings/processing-rules end point",
"type": "array",
"items": {
"type": "string"
}
},
"post": {
"description": "Post-processing rule names. Find available with /settings/processing-rules end point",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"pretty_print": {
"description": "Human-friendly output",
"type": "boolean",
"default": false
}
}
}
}
},
"TranslateResponse": {
"type": "object",
"properties": {
"results": {
"description": "Translated text",
"type": "array",
"items": {
"type": "string"
}
},
"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"
}
}
}
}
}
}
}