From 2acd9a5a5916f9924b5ce74a2cfb8c84786791c5 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 e1a279d..97a3611 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