From 798db010b2bc4078b9342a8726ac1590cb3c3df1 Mon Sep 17 00:00:00 2001 From: Eivind Grimstad Date: Fri, 27 Feb 2026 13:55:45 +0100 Subject: [PATCH] fix: Disable no-$ref-siblings rule from required ruleset While it is technically invalid OpenAPI, it is nothing breaking for the developer-portal, so we don't need to fail publishing if there are ref-siblings. --- .spectral-required.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.spectral-required.yml b/.spectral-required.yml index b7e4496..68ad69e 100644 --- a/.spectral-required.yml +++ b/.spectral-required.yml @@ -1,4 +1,8 @@ # API Guidelines Ruleset +# Specs must produce no errors with this ruleset in order to publish to developer-portal # OpenAPI Specification version 3.x extends: [spectral:oas] + +rules: + no-$ref-siblings: "off"