Hi,
I'm creating a custom connector with the ability to upload a file.
This is the swagger definition of the action:
"/action/files": {
"post": {
"operationId": "UploadFile",
"summary": "Upload file",
"consumes": [
"multipart/form-data"
],
"parameters": [
{
"$ref": "#/parameters/regionParam"
},
{
"$ref": "#/parameters/projectIdParam"
},
{
"name": "path",
"x-ms-summary": "Folder path",
"description": "Folder path to the file",
"in": "query",
"type": "string",
"default": "/"
},
{
"name": "content",
"x-ms-summary": "File content",
"description": "File content to upload",
"in": "formData",
"type": "file",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "object",
"properties": {
"fileId": {
"type": "string",
"x-ms-summary": "File id"
},
"name": {
"type": "string",
"x-ms-summary": "File name"
}
}
}
}
}
}
}
This is a screenshot of what the above definition produces:

How do I customize the description/x-ms-summary text of the automatically generated "File content (file name)" / "File content to upload (file name)" field? I would like to change it to something more user-friendly like "File name" / "File name with extension".