prassie
prassie
For somebody who checks on this thread to know the advantages of RapiDoc, here's an example which demonstrates the [various options](https://rapidocweb.com/api.html) in RapiDoc: https://rapidocweb.com/examples/api-demo.html   
rendered JSON is missing model schema referred in `"schema": { "$ref": "#/definitions/Model" }`
1. Please embed the images instead of separate links for easier reading as shown below 2. Seems the definitions are stored in a separate file in the basePath, which is...
@harttle would an option for global/default date format help, similar to timezoneOffset? In current code, the default format is hard coded. With such an option, engine users will be free...
Won't it be simpler/easier to use a simple static html like this: https://rapidocweb.com/examples/api-demo.html ?
@shawnachieve It does work, except that you've to re-select the active item after switching the option. As show below from the example: https://rapidocweb.com/examples/api-demo.html#get-/providers/microsoft.aadiam/diagnosticSettings 
"Error: Cannot find module '/engine-learn/Worker'" or "Error: expose() called in the master thread."
try exposing only in a worker thread. ``` import { expose, isWorkerRuntime } from "threads/worker"; if (isWorkerRuntime()) { expose(trainModel); } ```