UNPKG

@redocly/openapi-core

Version:

See https://github.com/Redocly/redocly-cli

14 lines 409 B
import { missingRequiredField } from '../utils.js'; export const InfoLicense = () => { return { Info(info, { report }) { if (!info.license) { report({ message: missingRequiredField('Info', 'license'), location: { reportOnKey: true }, }); } }, }; }; //# sourceMappingURL=info-license.js.map