UNPKG

@redocly/openapi-core

Version:

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

15 lines 515 B
import { missingRequiredField } from '../utils.js'; export const InfoContact = () => { return { Info(info, { report, location }) { if (!info.contact) { report({ message: missingRequiredField('Info', 'contact'), location: location.child('contact').key(), reference: 'https://redocly.com/docs/cli/rules/oas/info-contact', }); } }, }; }; //# sourceMappingURL=info-contact.js.map