UNPKG

@ibm-cloud/openapi-ruleset

Version:

Spectral ruleset for validating IBM Cloud services

19 lines (16 loc) 316 B
/** * Copyright 2017 - 2023 IBM Corporation. * SPDX-License-Identifier: Apache2.0 */ // Set of fields within a "path item" where we'd expect to find operations. const operationMethods = [ 'get', 'head', 'post', 'put', 'patch', 'delete', 'options', 'trace', ]; module.exports = operationMethods;