-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathibm-oas.js
164 lines (161 loc) · 7.58 KB
/
ibm-oas.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
const { oas3 } = require('@stoplight/spectral-formats');
const { oas } = require('@stoplight/spectral-rulesets');
const ibmRules = require('./rules');
module.exports = {
extends: oas,
documentationUrl:
'https://github.com/IBM/openapi-validator/blob/main/docs/ibm-cloud-rules.md',
formats: [oas3],
rules: {
// Original list created from Spectral with:
// jq -r '.rules | to_entries | .[] | select(.value.recommended != false) | " \(.key): off"' src/rulesets/oas/index.json
// Spectral OAS rules - IBM Custom Settings
// Turn off -- duplicates no_success_response_codes
'operation-success-response': 'off',
// Enable with same severity as Spectral
'oas2-operation-formData-consume-check': true,
// Enable with same severity as Spectral
'operation-operationId-unique': true,
// Enable with same severity as Spectral
'operation-parameters': true,
// Enable with same severity as Spectral
'operation-tag-defined': true,
// Turn off - exclude from ibm:oas
'info-contact': 'off',
// Turn off - exclude from ibm:oas
'info-description': 'off',
// Enable with same severity as Spectral
'no-eval-in-markdown': true,
// Enable with same severity as Spectral
'no-script-tags-in-markdown': true,
// Enable with same severity as Spectral
'openapi-tags': true,
// Enable with same severity as Spectral
'operation-description': true,
// Enable with same severity as Spectral
'operation-operationId': true,
// Turn off - duplicates operation_id_case_convention
'operation-operationId-valid-in-url': 'off',
// Enable with same severity as Spectral
'operation-tags': true,
// Enable with same severity as Spectral
'path-params': true,
// Enable with same severity as Spectral
'path-declarations-must-exist': true,
// Enable with same severity as Spectral
'path-keys-no-trailing-slash': true,
// Enable with same severity as Spectral
'path-not-include-query': true,
// Enable with same severity as Spectral
'no-$ref-siblings': true,
// Enable with same severity as Spectral
'typed-enum': true,
// Enable with same severity as Spectral
'oas2-api-host': true,
// Enable with same severity as Spectral
'oas2-api-schemes': true,
// Enable with same severity as Spectral
'oas2-host-trailing-slash': true,
// Turn off - dupicates non-configurable validation - security-ibm.js
'oas2-operation-security-defined': 'off',
// Enable with warn severity
'oas2-valid-schema-example': 'warn',
// Turn off
'oas2-valid-media-example': 'off',
// Enable with same severity as Spectral
'oas2-anyOf': true,
// Enable with same severity as Spectral
'oas2-oneOf': true,
// Turn off
'oas2-schema': 'off',
// Turn off - duplicates non-configurable validation in base validator
'oas2-unused-definition': true,
// Enable with same severity as Spectral
'oas3-api-servers': true,
// Enable with same severity as Spectral
'oas3-examples-value-or-externalValue': true,
// Turn off - dupicates non-configurable validation - security-ibm.js
'oas3-operation-security-defined': 'off',
// Enable with same severity as Spectral
'oas3-server-trailing-slash': true,
// Enable with warn severity
'oas3-valid-media-example': 'warn',
// Enable with warn severity
'oas3-valid-schema-example': 'warn',
// Enable with same severity as Spectral
'oas3-schema': true,
// Turn off - duplicates non-configurable validation in base validator
'oas3-unused-component': true,
// IBM Custom Rules
'array-boundary': ibmRules.arrayBoundary,
'accept-parameter': ibmRules.acceptParameter,
'array-items': ibmRules.arrayItems,
'array-of-arrays': ibmRules.arrayOfArrays,
'array-responses': ibmRules.arrayResponses,
'authorization-parameter': ibmRules.authorizationParameter,
'binary-schemas': ibmRules.binarySchemas,
'circular-refs': ibmRules.circularRefs,
'collection-array-property': ibmRules.collectionArrayProperty,
'composed-schema-restrictions': ibmRules.composedSchemaRestrictions,
'consecutive-path-param-segments': ibmRules.consecutivePathParamSegments,
'content-entry-contains-schema': ibmRules.contentEntryContainsSchema,
'content-entry-provided': ibmRules.contentEntryProvided,
'content-type-parameter': ibmRules.contentTypeParameter,
'delete-body': ibmRules.deleteBody,
'description-mentions-json': ibmRules.descriptionMentionsJSON,
discriminator: ibmRules.discriminator,
'duplicate-path-parameter': ibmRules.duplicatePathParameter,
'enum-case-convention': ibmRules.enumCaseConvention,
'examples-name-contains-space': ibmRules.examplesNameContainsSpace,
'ibm-content-type-is-specific': ibmRules.ibmContentTypeIsSpecific,
'ibm-error-content-type-is-json': ibmRules.ibmErrorContentTypeIsJson,
'ibm-sdk-operations': ibmRules.ibmSdkOperations,
'if-modified-since-parameter': ibmRules.ifModifiedSinceParameter,
'if-unmodified-since-parameter': ibmRules.ifUnmodifiedSinceParameter,
'inline-property-schema': ibmRules.inlinePropertySchema,
'inline-request-schema': ibmRules.inlineRequestSchema,
'inline-response-schema': ibmRules.inlineResponseSchema,
'major-version-in-path': ibmRules.majorVersionInPath,
'merge-patch-optional-properties': ibmRules.mergePatchOptionalProperties,
'missing-required-property': ibmRules.missingRequiredProperty,
'no-etag-header': ibmRules.noEtagHeader,
'operation-id-case-convention': ibmRules.operationIdCaseConvention,
'operation-id-naming-convention': ibmRules.operationIdNamingConvention,
'operation-summary': ibmRules.operationSummary,
'optional-request-body': ibmRules.optionalRequestBody,
'pagination-style': ibmRules.paginationStyle,
'parameter-case-convention': ibmRules.parameterCaseConvention,
'parameter-default': ibmRules.parameterDefault,
'parameter-description': ibmRules.parameterDescription,
'parameter-order': ibmRules.parameterOrder,
'parameter-schema-or-content': ibmRules.parameterSchemaOrContent,
'patch-request-content-type': ibmRules.patchRequestContentType,
'path-param-not-crn': ibmRules.pathParamNotCRN,
'path-segment-case-convention': ibmRules.pathSegmentCaseConvention,
'precondition-header': ibmRules.preconditionHeader,
'prohibit-summary-sentence-style': ibmRules.prohibitSummarySentenceStyle,
'property-attributes': ibmRules.propertyAttributes,
'property-case-collision': ibmRules.propertyCaseCollision,
'property-case-convention': ibmRules.propertyCaseConvention,
'property-description': ibmRules.propertyDescription,
'property-inconsistent-name-and-type':
ibmRules.propertyInconsistentNameAndType,
'ref-pattern': ibmRules.refPattern,
'ref-sibling-duplicate-description':
ibmRules.refSiblingDuplicateDescription,
'request-body-name': ibmRules.requestBodyName,
'request-body-object': ibmRules.requestBodyObject,
'response-error-response-schema': ibmRules.responseErrorResponseSchema,
'response-example-provided': ibmRules.responseExampleProvided,
'response-status-codes': ibmRules.responseStatusCodes,
'schema-description': ibmRules.schemaDescription,
'schema-type': ibmRules.schemaType,
'security-scheme-attributes': ibmRules.securitySchemeAttributes,
'security-schemes': ibmRules.securitySchemes,
'server-variable-default-value': ibmRules.serverVariableDefaultValue,
'string-boundary': ibmRules.stringBoundary,
'unused-tag': ibmRules.unusedTag,
'valid-path-segments': ibmRules.validPathSegments,
'valid-type-format': ibmRules.validTypeFormat
}
};