Skip to content
Open
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
73 changes: 73 additions & 0 deletions articles/LCPublicAPI/api/Public-API.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -8823,6 +8823,9 @@
},
{
"$ref": "#/components/parameters/fields"
},
{
"$ref": "#/components/parameters/languageCode"
}
],
"responses": {
Expand Down Expand Up @@ -8932,6 +8935,9 @@
},
{
"$ref": "#/components/parameters/fields"
},
{
"$ref": "#/components/parameters/languageCode"
}
],
"responses": {
Expand Down Expand Up @@ -30833,6 +30839,10 @@
"originatingTaskId": {
"type": "string",
"description": "The identifier of the task that generated the file."
},
"verification": {
"$ref": "#/components/schemas/verification",
"description": "The verification result of the target file version. Only available after the file has gone through the Automated QA Check workflow step."
}
},
"required": [
Expand Down Expand Up @@ -34668,6 +34678,60 @@
}
}
},
"verification-message": {
"title": "Verification Message",
"type": "object",
"description": "A verification message.",
"properties": {
"messageType": {
"type": "string",
"description": "The type of the verification message."
},
"friendlyName": {
"type": "string",
"description": "The localized friendly name of the message type."
},
"verifier": {
"type": "string",
"description": "<div style=\"display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px\">default</div><div style=\"display: inline;\">The verifier that produced the message.</div> ",
"x-default-field": true
},
"errorMessage": {
"type": "string",
Comment thread
raulcristiann marked this conversation as resolved.
"description": "<div style=\"display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px\">default</div><div style=\"display: inline;\">The localized error message, with error arguments substituted in.</div> ",
"x-default-field": true
},
"detailedErrorMessage": {
"type": "string",
"description": "<div style=\"display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px\">default</div><div style=\"display: inline;\">The localized detailed error message, with error arguments substituted in.</div> ",
"x-default-field": true
},
"suggestion": {
"type": "string",
"description": "The localized suggestion for resolving the message."
},
"segmentId": {
"type": "string",
"description": "<div style=\"display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px\">default</div><div style=\"display: inline;\">The identifier of the segment the message relates to.</div> ",
"x-default-field": true
}
}
},
"verification": {
"title": "Verification",
"type": "object",
"description": "The verification result of a target file version.",
"properties": {
"messages": {
"type": "array",
"description": "<div style=\"display:inline; float:right; color:#008080; margin-top:-23px; font-size:11px\">default</div><div style=\"display: inline;\">The verification messages.</div> ",
"x-default-field": true,
"items": {
"$ref": "#/components/schemas/verification-message"
}
}
}
},
"volume-unit-type": {
"title": "Volume Unit Type",
"type": "string",
Expand Down Expand Up @@ -35644,6 +35708,15 @@
"type": "string"
}
},
"languageCode": {
"name": "languageCode",
"in": "query",
"description": "The language code used to localize the verification message text when it is requested via the 'fields' query parameter. The only supported values are \"en-US\" (default), \"cy-GB\", \"de-DE\", \"es-ES\", \"fr-CA\", \"fr-FR\", \"it-IT\", \"ja-JP\", \"nl-NL\" and \"zh-CN\". Defaults to \"en-US\" when omitted. If the requested language code is not one of the supported values, the response falls back to \"en-US\".",
"schema": {
"type": "string",
"default": "en-US"
}
},
"email": {
"name": "email",
"in": "query",
Expand Down
Loading