Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed missing path parameters and required property definitions #178

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
15 changes: 14 additions & 1 deletion sdk/swaggers/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -12979,6 +12979,14 @@
"application/json"
],
"parameters": [
{
"name": "groupId",
"in": "path",
"description": "The workspace ID",
"required": true,
"type": "string",
"format": "uuid"
},
{
"name": "groupId",
"in": "path",
Expand Down Expand Up @@ -20219,7 +20227,7 @@
],
"description": "A Power BI user access right entry for dataflow",
"properties": {
"DataflowUserAccessRight": {
"dataflowUserAccessRight": {
"type": "string",
"description": "Access rights user has for the dataflow (Permission level)",
"enum": [
Expand Down Expand Up @@ -22727,6 +22735,11 @@
}
]
}
},
"lastUpdatedTime": {
"type": "string",
"format": "date-time",
"description": "The last time the operation was updated."
},
"sourceAndTarget": {
"description": "The source and target items of the step",
Expand Down