Darrel

Results 511 comments of Darrel

@WarpSpideR Sounds good to me.

AutoREST only validates a small number of constraints from the OpenAPI spec. The OpenAPI.NET library validates all constraints that are MUST from the specification. The specific rule that is being...

I have been working on a command line tool that will allow validation. Would that help you to pre-validate OpenAPI documents?

@Blackbaud-ChristiSchneider Yeah, in theory any validator that properly validates the spec would be equivalent, but there are definitely some grey areas when it comes to validation. This tool currently is...

It is here https://github.com/microsoft/OpenAPI.NET/tree/vnext/src/Microsoft.OpenApi.Tool

That makes sense to me. We can't make it an enum because it is extensible, but a set of string constants would definitely be a good idea.

For writing? What kind of settings would you like to change? We wrote our own JSON/YAML writer to avoid the dependency on JSON.NET.

That's a really interesting question. I think we would need to have two distinct DOM roots but we could share come of the common models. I would be reluctant to...

Can you give an example because we do support models that reference themselves?

Hey @fabich thanks for the PR. We currently have three different implementations of OpenAPI diff capabilities and they all take a different approach. I'm thinking that the best option is...