Skip to content

Commit

Permalink
Add OutputColumn Object For Office365Source outputColumns (#24068)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingshu923 authored May 23, 2023
1 parent c183bb0 commit dfd94f5
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2980,7 +2980,17 @@
},
"outputColumns": {
"type": "object",
"description": "The columns to be read out from the Office 365 table. Type: array of objects (or Expression with resultType array of objects). Example: [ { \"name\": \"Id\" }, { \"name\": \"CreatedDateTime\" } ]"
"description": "The columns to be read out from the Office 365 table. Type: array of objects (or Expression with resultType array of objects). itemType: OutputColumn. Example: [ { \"name\": \"Id\" }, { \"name\": \"CreatedDateTime\" } ]"
}
}
},
"OutputColumn": {
"description": "The columns to be read out from the Office 365 table.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the table column. Type: string."
}
}
},
Expand Down

0 comments on commit dfd94f5

Please sign in to comment.