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 0aeb144 commit 6600f0cCopy full SHA for 6600f0c
1 file changed
openapi_core/unmarshalling/schemas/unmarshallers.py
@@ -144,7 +144,8 @@ def items_unmarshaller(self):
144
145
def __call__(self, value=NoValue):
146
value = super(ArrayUnmarshaller, self).__call__(value)
147
-
+ if value is None and self.schema.nullable:
148
+ return None
149
return list(map(self.items_unmarshaller, value))
150
151
0 commit comments