We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cade985 commit dc27ee5Copy full SHA for dc27ee5
doc/compiled.json
@@ -739,11 +739,21 @@
739
},
740
"slug": {
741
"type": "string"
742
+ },
743
+ "roles": {
744
+ "type": "array",
745
+ "items": {
746
+ "type": "string"
747
+ }
748
}
749
750
"example": {
751
"slug": "company-account",
- "subscription": "subscription"
752
+ "subscription": "subscription",
753
+ "roles": [
754
+ "Owner",
755
+ "Admin"
756
+ ]
757
758
759
]
schemas/account_details.yaml
@@ -9,6 +9,11 @@ account_details:
9
"$ref": "./subscription.yaml#/subscription"
10
slug:
11
type: string
12
+ roles:
13
+ type: array
14
+ items:
15
+ type: string
16
example:
17
slug: company-account
18
subscription: subscription
19
+ roles: [Owner, Admin]
0 commit comments