From 1d2c150c5d68371e7bbec4f01f51fa480ad00d87 Mon Sep 17 00:00:00 2001 From: muzafarova Date: Wed, 25 Jun 2025 11:34:48 +0100 Subject: [PATCH] feat: add error codes for recruitment overrides --- src/schema/job-board-application.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/schema/job-board-application.json b/src/schema/job-board-application.json index 82b8342..2653034 100644 --- a/src/schema/job-board-application.json +++ b/src/schema/job-board-application.json @@ -1005,6 +1005,26 @@ "category": "client", "description": "File type not supported" }, + { + "code": "InputIncomplete", + "category": "server", + "description": "Mandatory questions must be answered (internal issue)" + }, + { + "code": "InputInvalid", + "category": "server", + "description": "Internal input validation issue" + }, + { + "code": "InputRejected", + "category": "server", + "description": "Replacement for rejected input was not provided within 15 minutes (internal issue)" + }, + { + "code": "InputTimeout", + "category": "server", + "description": "Internal input timeout issue" + }, { "code": "InternalError", "category": "server",