How to use the jsonref.parse function in jsonref

To help you get started, we’ve selected a few jsonref examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github vivocha / arrest / src / schema.js View on Github external
export function resolve(dataOrUri, opts) {
  return jr.parse(dataOrUri, _.defaults(opts, {
    store: _store,
    retriever: defaultRetriever
  }));
}
export function create(dataOrUri, opts) {
github vivocha / arrest / src / api.ts View on Github external
for (let j in s.flows) {
                    const f = s.flows[j];
                    ['authorizationUrl', 'tokenUrl', 'refreshUrl'].forEach(k => {
                      if (f[k]) {
                        f[k] = new URL(f[k], baseUrl).toString();
                      }
                    });
                  }
                }
              }
            }
            res.json(out);
          }
        });

        this.document = await refs.parse(this.document, this.parseOptions);
        for (let resource of this.resources) {
          await resource.router(router, options);
        }
        router.use(this.handleError);
        return router;
      })();
    }

jsonref

Javascript References ($ref) and Pointers library

MIT
Latest version published 2 years ago

Package Health Score

48 / 100
Full package analysis