OpenAPI.NET.OData
OpenAPI.NET.OData copied to clipboard
nullable
Hi,
A lot of schema are showing as having nullable items in contexts where this doesn't make a lot of sense. Example:
microsoft.graph.serviceUpdateMessage:
...
services:
type: array
items:
type: string
nullable: true
description: The affected services by the service message.
So that's an array of optional strings, which makes little sense.
I am not sure if the graph metadata is wrong, of it the nullable appeared in the translation to OpenAPI.
The OpenAPI is simply following if the property is marked as nullable in the CSDL. What problem is this causing you?