mmmasent

Results 5 comments of mmmasent

I understand fine code coverage is not ReSharper, but I am coming from a ReSharper background. ![image](https://user-images.githubusercontent.com/29384916/105420802-01d60480-5c0f-11eb-8cfa-07c00784f701.png) When you run code coverage with ReSharper, it also includes test projects in...

My personal preference is for naming conventions to be more explicit as to the use of the variable/object so that it is easier to understand from a quick glance as...

@brantburnett ``` "AFakeAbstract": { "type": "object", "required": [ "fakeType" ], "allOf": [ { "$ref": "#/components/schemas/BillingSchedule" } ], "properties": { "fakeType": { "$ref": "#/components/schemas/FakeEnumType" }, "fakePropertyA": { "type": "integer", "format": "int32"...

This is an issue with having a oneOf and allOf tag on the same object. There are real world cases for multiple inheritance; for hopefully a little more clarity, imagine...

To further provide a more complete schema set for an example scenario, I'm providing a slightly modified json schema from one of the commits in a related PR: ``` "BillingScheduleType":...