From e2a25f44a37e2a79d70a182e1e8fafb121d97d3e Mon Sep 17 00:00:00 2001 From: Jack Wilsdon Date: Fri, 14 Nov 2025 13:46:39 +0000 Subject: [PATCH] fix: only require at least 1 property to be present in a collection update The collection update endpoint only requires that at least one property is present - "fields" is not strictly required (e.g. for metadata updates). --- openapi.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openapi.yml b/openapi.yml index b592654..6210f2a 100644 --- a/openapi.yml +++ b/openapi.yml @@ -2479,9 +2479,8 @@ components: description: > Optional details about the collection, e.g., when it was created, who created it etc. CollectionUpdateSchema: - required: - - fields type: object + minProperties: 1 properties: fields: type: array