UNPKG

@ibm-cloud/openapi-ruleset

Version:

Spectral ruleset for validating IBM Cloud services

15 lines (13 loc) 275 B
/** * Copyright 2017 - 2023 IBM Corporation. * SPDX-License-Identifier: Apache2.0 */ module.exports = function (obj) { if (!obj.schema && !obj.content) { return [ { message: 'Parameters must provide either a schema or content', }, ]; } };