From dfd94f5147c9db771b40806aaebec3db044a3705 Mon Sep 17 00:00:00 2001 From: Jingshu923 <52914166+Jingshu923@users.noreply.github.com> Date: Wed, 24 May 2023 00:43:42 +0800 Subject: [PATCH] Add OutputColumn Object For Office365Source outputColumns (#24068) --- .../stable/2020-12-01/entityTypes/Pipeline.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json index c198991cf30c..2dd57eb9aab8 100644 --- a/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json +++ b/specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/Pipeline.json @@ -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." } } },