Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions articles/LCPublicAPI/api/Public-API.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4103,9 +4103,23 @@
],
"requestBody": {
"content": {
"application/json": {
"multipart/form-data": {
"schema": {
"$ref": "#/components/schemas/perfect-match-custom-file-mapping-request"
"type": "object",
"required": [
"properties",
"file"
],
"properties": {
"properties": {
"$ref": "#/components/schemas/perfect-match-custom-file-mapping-request"
},
"file": {
"type": "string",
"format": "binary",
"description": "The source file (binary string). Only SDLXLIFF files are accepted."
}
}
}
}
}
Expand Down Expand Up @@ -23193,30 +23207,16 @@
"description": "Provide you own matching file.",
"type": "object",
"required": [
"properties",
"file"
"name",
"targetLanguage"
],
"properties": {
"properties": {
"type": "object",
"required": [
"name",
"targetLanguage"
],
"properties": {
"name": {
"type": "string",
"description": "The file name."
},
"targetLanguage": {
"type": "string"
}
}
},
"file": {
"name": {
"type": "string",
"format": "binary",
"description": "The source file (binary string). Only SDLXLIFF files are accepted."
"description": "The file name."
},
"targetLanguage": {
"type": "string"
}
}
},
Expand Down
Loading