Greg Dennis
Greg Dennis
Yeah, I'm not fully up on AOT either. I was fortunate to have some very smart people at .Net help. Absolutely you can create the schema in an initial build...
> But isn't it so that in Draft4-7 (https://json-schema.org/understanding-json-schema/structuring#dollarref) that $ref objects are not considered schemas and therefore any other properties (in this case both minLength and myCustomProperty) are ignored?...
Hey there. Thanks for the report, but I think this is working as expected. I've tried this on the playground, https://json-everything.net, and it generates with `null`. I also have tests...
I think your options are down to either putting the attribute everywhere you need it or post-processing the generated schema. I'm sorry, but I have no plans on retroactively supporting...
Please have a read through the [documentation](https://docs.json-everything.net/schema/schemagen/schema-generation/#schema-schemagen-extension) on how to customize the behavior of the generator. Ideally, you'd use Refiners to tweak the schema generation. If this is not sufficient...
I would greatly appreciate it someone could post the classes they're trying to generate for and the schema they want as output. I'm not convinced the current can't handle this,...
I'm actually completely rebuilding the main schema library right now. I'm done with that and its tests, and now I'm working on updating the extension libs. Pay off that work...
Didn't we just go through rewriting, reorganizing, and restyling basically all of the documentation just last year (also for GSoC)?
There are a couple issues here. First, you've defined a `#/$defs/key` but there aren't any keywords that reference it. Your top-level schema has no constraints, so nothing is processed, and...
I think I see what's happening. They're interpreting the non-empty array as truthy. I hate the super loose implicit casing and truthiness they have. It wreaks havoc on .net. I...