mik-laj commented on a change in pull request #14664:
URL: https://github.com/apache/airflow/pull/14664#discussion_r593826101
##########
File path: airflow/api_connexion/openapi/v1.yaml
##########
@@ -2169,6 +2235,73 @@ components:
$ref: '#/components/schemas/PluginCollectionItem'
- $ref: '#/components/schemas/CollectionInfo'
+ RoleCollectionItem:
+ description: Role collection item
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the role
+ actions:
+ type: array
+ items:
+ $ref: '#/components/schemas/ActionResource'
+
+ RoleCollection:
+ description: Role Collections
+ type: object
+ allOf:
+ - type: object
+ properties:
+ roles:
+ type: array
+ items:
+ $ref: '#/components/schemas/RoleCollectionItem'
+ - $ref: '#/components/schemas/CollectionInfo'
+
+ ActionCollectionItem:
Review comment:
```suggestion
ActionCollection:
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]