Darrel

Results 511 comments of Darrel

Sample payload ```json PATCH { "@type": "#Northwind.Manager", "FirstName": "Patricia", "DirectReports@delta": [ { "@removed": { "reason": "deleted" }, "id": "3" }, { "@removed": { "reason": "changed" }, "id": "4" }, {...

Implement special method on RequestBuilder that accepts something like: ``` graphClient.Users[].PatchBulk(Delta userDelta ); ``` ewww.

One solution would be to convert comments to extensions on read, and re-write them when we write out in YAML. This would only work for objects that support extensions. Not...

We might need to pull all rich typing out of this library in v2 because OpenAPI 3.1 uses native JSON Schema and it is limited to JSON types. We may...

Hey @AP-G thanks for raising this issue. How about if we implemented IsXXXDefault functions for all properties that have a non-null default?

Thanks for reporting this. We will investigate.

The first option can be resolved with this update. ``` if (paramSchema.Type == "string" && (paramSchema.Format == "binary" || paramSchema.Format == "base64") ) { paramSchema.Type = "file"; paramSchema.Format = null;...

The general approach we have taken is that we generate errors when we find documents that don't comply with the specification. We do our best to parse whatever we are...

Thanks for reporting this. We will need to have a local field to track any explicitly set style value and if that is not set then return a style based...

Let's not set a default for the In parameter because that would prevent us from knowing if a user has explicitly set it in the future. Let's create a backing...