* Convert OpenAPI schema to JSON schema draft 7 and print it as a JavaScript * object literal * @param {object} oasSchema - OpenAPI schema
(oasSchema)
| 298 | * @param {object} oasSchema - OpenAPI schema |
| 299 | */ |
| 300 | function printJsonSchema(oasSchema) { |
| 301 | const jsonSchema = toJsonSchema(oasSchema); |
| 302 | return printSpecObject(jsonSchema); |
| 303 | } |
| 304 | |
| 305 | module.exports = { |
| 306 | isExtension, |
no test coverage detected