@redocly/openapi-core
Version:
See https://github.com/Redocly/openapi-cli
21 lines (20 loc) • 711 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OperationIdUnique = void 0;
const OperationIdUnique = () => {
const seenOperations = new Set();
return {
Operation(operation, { report, location }) {
if (!operation.operationId)
return;
if (seenOperations.has(operation.operationId)) {
report({
message: 'Every operation must have a unique `operationId`.',
location: location.child([operation.operationId]),
});
}
seenOperations.add(operation.operationId);
},
};
};
exports.OperationIdUnique = OperationIdUnique;