Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -3094,7 +3094,27 @@
"typeProperties": {
"description": "Properties specific to this dataset type.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/GenericDatasetTypeProperties"
"$ref": "#/definitions/JiraTableDatasetTypeProperties"
}
}
},
"JiraTableDatasetTypeProperties": {
"description": "Jira dataset properties.",
"properties": {
"tableName": {
Comment thread
sudhiremmadi marked this conversation as resolved.
"type": "object",
"x-ms-format": "dfe-string",
"description": "This property will be retired. Please consider using schema + table properties instead."
},
"schema": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The schema name of the Jira. Type: string (or Expression with resultType string)."
},
"table": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The table name of the Jira. Type: string (or Expression with resultType string)."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2935,7 +2935,25 @@
"typeProperties": {
"description": "Properties specific to this dataset type.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/GenericDatasetTypeProperties"
"$ref": "#/definitions/JiraDatasetTypeProperties"
}
Comment thread
sudhiremmadi marked this conversation as resolved.
}
},
"JiraDatasetTypeProperties": {
"description": "Jira Dataset Properties",
"type": "object",
"properties": {
"tableName": {
"type": "object",
"description": "This property will be retired. Please consider using schema + table properties instead."
},
"table": {
"type": "object",
"description": "The table name of the Jira. Type: string (or Expression with resultType string)."
},
"schema": {
"type": "object",
"description": "The schema name of the Jira. Type: string (or Expression with resultType string)."
}
}
},
Expand Down
Loading