Skip to content
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
32 changes: 32 additions & 0 deletions schemas/apiDefinition.swagger.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,9 @@
},
"x-ms-visibility": {
"$ref": "#/definitions/x-ms-visibility"
},
"x-ms-action-groups": {
"$ref": "#/definitions/x-ms-action-groups"
}
}
},
Expand Down Expand Up @@ -2556,6 +2559,35 @@
"internal"
]
},
"x-ms-action-groups": {
"title": "The list of groups an action belongs to",
"description": "The domain and scope of the groups an action belongs to. Actions can belong to multiple groups. For example, the send email action would belong to the email.create and email.destructive groups.",
"type": "array",
"items": {
"$ref": "#/definitions/action-group"
},
"uniqueItems": true
},
"action-group": {
"title": "The group an action belongs to",
"description": "The domain and scope of the group an action belongs to.",
"type": "object",
"properties": {
"domain": {
"description": "The domain of the group, e.g. 'email', 'file', 'event', etc.",
"type": "string"
},
"scope": {
"description": "The scope of the groups operations",
"type": "string",
"enum": [
"read",
"create",
"destructive"
]
}
}
},
"x-ms-url-encoding": {
"title": "Encoding style to use for this parameter",
"description": "Identifies if the current path parameter should be double url-encoded `double` or single url-encoded `single`. Absence of this field means `single` encoding.",
Expand Down