Chad Lankford

Results 7 comments of Chad Lankford

I do realize the draft 07 docs give some latitude to the validator impl regarding resolving $ref per the following: "Even though the value of a $ref is a URI,...

I ended up finding and using the mechanism in your api to implement my own JsonSchemaResolver. That works for me.

one other question. is there a way to output the effective schema after the $refs are resolved?

yeah, I didn't think about the recursive reference situation. I suppose you would just have to make a decision to stop resolving the references for effective schema once recursive situation...

yes, the utility of this is strictly for debugging in the cases of complex object graphs whose schemas make heavy use of $ref. Sometimes it can be helpful.

Another question for you... I have implemented a custom problem handler which basically outputs the problem parameters map. The output is pretty good except it would be nice if the...

@leadpony, @rconnacher Below, you will find a rough outline of what I did. Basically, the NetworkJsonSchemaResolver, just retrieves the remote file, reads it in with a new SchemaReaderFactory on which...