From 19352736b7d95816eec7057e40530da0050c25a4 Mon Sep 17 00:00:00 2001 From: Tyler Coleman Date: Thu, 14 Nov 2024 15:04:58 -0800 Subject: [PATCH] add participantId and representativeId --- .../app/swagger/claims_api/v2/dev/swagger.json | 10 ++++++++++ .../param/decision/post.json | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json b/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json index e4d425718c4..08c6f99650c 100644 --- a/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json +++ b/modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json @@ -358,6 +358,16 @@ "type": "string", "description": "The reason for declining the request.", "nullable": true + }, + "participantId": { + "type": "string", + "description": "The unique identifier of the requestʼs participant. Required if the decision is DECLINED.", + "nullable": true + }, + "representativeId": { + "type": "string", + "description": "The unique identifier of the requestʼs representative. Required if the decision is DECLINED.", + "nullable": true } } } diff --git a/modules/claims_api/config/schemas/v2/power_of_attorney_requests/param/decision/post.json b/modules/claims_api/config/schemas/v2/power_of_attorney_requests/param/decision/post.json index 90359e64bb7..6db445cef51 100644 --- a/modules/claims_api/config/schemas/v2/power_of_attorney_requests/param/decision/post.json +++ b/modules/claims_api/config/schemas/v2/power_of_attorney_requests/param/decision/post.json @@ -40,6 +40,16 @@ ], "description": "The reason for declining the request.", "nullable": true + }, + "participantId": { + "type": "string", + "description": "The unique identifier of the requestʼs participant. Required if the decision is DECLINED.", + "nullable": true + }, + "representativeId": { + "type": "string", + "description": "The unique identifier of the requestʼs representative. Required if the decision is DECLINED.", + "nullable": true } } }