* @param object The object to render as JSON.
* @param objectWriter The writer to use to render the object as JSON. If null, the default object writer will be used by the renderer.
* @return A JSON type wrapper for the given object.
*/
public static JsonRender json(Object object, @Nullable ObjectWriter objectWriter) {
return new DefaultJsonRender(object, objectWriter);
}