@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
15 lines (13 loc) • 409 B
text/typescript
import { Oas3Rule } from '../../visitors';
export const NoExampleValueAndExternalValue: Oas3Rule = () => {
return {
Example(example, { report, location }) {
if (example.value && example.externalValue) {
report({
message: 'Example object can have either `value` or `externalValue` fields.',
location: location.child(['value']).key(),
});
}
},
};
};