From f48bd314ff74e788db623c74045b529844d52c3b Mon Sep 17 00:00:00 2001 From: provokateurin Date: Sun, 2 Jun 2024 23:41:06 +0200 Subject: [PATCH] fix(core): Add missing null value possibility to Resource and Reference richObject Signed-off-by: provokateurin --- core/ResponseDefinitions.php | 4 ++-- core/openapi.json | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/core/ResponseDefinitions.php b/core/ResponseDefinitions.php index f186f52c335..7a1dad464dd 100644 --- a/core/ResponseDefinitions.php +++ b/core/ResponseDefinitions.php @@ -53,7 +53,7 @@ namespace OCA\Core; * * @psalm-type CoreResource = array{ * richObjectType: string, - * richObject: array, + * richObject: array, * openGraphObject: CoreOpenGraphObject, * accessible: bool, * } @@ -66,7 +66,7 @@ namespace OCA\Core; * * @psalm-type CoreReference = array{ * richObjectType: string, - * richObject: array, + * richObject: array, * openGraphObject: CoreOpenGraphObject, * accessible: bool, * } diff --git a/core/openapi.json b/core/openapi.json index a20691046fa..94b93253704 100644 --- a/core/openapi.json +++ b/core/openapi.json @@ -358,7 +358,8 @@ "richObject": { "type": "object", "additionalProperties": { - "type": "object" + "type": "object", + "nullable": true } }, "openGraphObject": { @@ -416,7 +417,8 @@ "richObject": { "type": "object", "additionalProperties": { - "type": "object" + "type": "object", + "nullable": true } }, "openGraphObject": { -- 2.39.5