Skip to content

Commit

Permalink
fix: replace missing component in override with inline definition
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jan 8, 2025
1 parent 77f2073 commit 916844c
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,21 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/organization-fine-grained-permission"
"title": "Organization Fine-Grained Permission",
"description": "A fine-grained permission that protects organization resources.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"name",
"description"
]
}
},
"examples": {
Expand Down

0 comments on commit 916844c

Please # to comment.