Skip to content

Commit

Permalink
fix(openapi): add missing properties in Any
Browse files Browse the repository at this point in the history
  • Loading branch information
rkojedzinszky committed Oct 9, 2024
1 parent 198b81f commit ecc63ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/middlewared/middlewared/schema/adaptable_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def to_json_schema(self, parent=None):
{'type': 'string'},
{'type': 'integer'},
{'type': 'boolean'},
{'type': 'object'},
{'type': 'array'},
{'type': 'object', 'properties': {}},
{'type': 'array', 'items': []},
],
'nullable': self.null,
**self._to_json_schema_common(parent),
Expand Down

0 comments on commit ecc63ff

Please sign in to comment.