@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
17 lines (14 loc) • 407 B
text/typescript
import { missingRequiredField } from '../utils';
import type { Oas3Rule, Oas2Rule } from '../../visitors';
export const InfoContact: Oas3Rule | Oas2Rule = () => {
return {
Info(info, { report, location }) {
if (!info.contact) {
report({
message: missingRequiredField('Info', 'contact'),
location: location.child('contact').key(),
});
}
},
};
};