Skip to content
This repository has been archived by the owner on Oct 3, 2022. It is now read-only.

Commit

Permalink
Bugfix: create clossary API
Browse files Browse the repository at this point in the history
  • Loading branch information
ynojima committed Jun 25, 2022
1 parent 8811e46 commit eea3b1d
Showing 1 changed file with 24 additions and 28 deletions.
52 changes: 24 additions & 28 deletions src/main/resources/specs/deepl-api-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,34 +313,30 @@ paths:
- DeepL
security:
- QueryApiKeyAuth: []
parameters:
- name: name
required: true
in: query
schema:
type: string
- name: source_lang
required: true
in: query
schema:
type: string
- name: target_lang
required: true
in: query
schema:
type: string
- name: entries
required: true
in: query
schema:
type: string
- name: entries_format
required: true
in: query
schema:
type: string
enum:
- "tsv"
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
required:
- name
- source_lang
- target_lang
- entries
- entries_format
properties:
name:
type: string
source_lang:
type: string
target_lang:
type: string
entries:
type: string
entries_format:
type: string
enum:
- "tsv"
responses:
'200':
description: language pairs supported by glossaries
Expand Down

0 comments on commit eea3b1d

Please sign in to comment.