diff --git a/docs/reference/arazzo-rules.md b/docs/reference/arazzo-rules.md index 80a6b58ae..858ea1807 100644 --- a/docs/reference/arazzo-rules.md +++ b/docs/reference/arazzo-rules.md @@ -275,12 +275,6 @@ In order to improve consumer experience, Step `description` should be present an **Recommend:** Yes -### arazzo-step-summary - -In order to improve consumer experience, Step `summary` should be present and a non-empty string. - -**Recommend:** Yes - ### arazzo-step-operationPath It is recommended to use `operationId` rather than `operationPath` within a step to reference an API operation. diff --git a/packages/rulesets/package.json b/packages/rulesets/package.json index 65edc0072..0fc2aa927 100644 --- a/packages/rulesets/package.json +++ b/packages/rulesets/package.json @@ -1,6 +1,6 @@ { "name": "@stoplight/spectral-rulesets", - "version": "1.20.1", + "version": "1.20.2", "homepage": "https://github.com/stoplightio/spectral", "bugs": "https://github.com/stoplightio/spectral/issues", "author": "Stoplight ", diff --git a/packages/rulesets/src/arazzo/index.ts b/packages/rulesets/src/arazzo/index.ts index 07420a8fc..87e406544 100644 --- a/packages/rulesets/src/arazzo/index.ts +++ b/packages/rulesets/src/arazzo/index.ts @@ -202,15 +202,6 @@ export default { function: truthy, }, }, - 'arazzo-step-summary': { - description: 'Step "summary" is recommended to be present and a non-empty string.', - severity: 'hint', - given: '$.workflows[*].steps[*]', - then: { - field: 'summary', - function: truthy, - }, - }, 'arazzo-step-stepId': { description: 'Step "stepId" should follow the pattern "^[A-Za-z0-9_\\-]+$".', severity: 'warn',