diff --git a/screening-api-docs/api.json b/screening-api-docs/api.json index 917c2ea..71df86b 100644 --- a/screening-api-docs/api.json +++ b/screening-api-docs/api.json @@ -6284,6 +6284,26 @@ "updated_at" ] }, + "Assignee": { + "type": "object", + "description": "A partner user assigned to an application", + "properties": { + "id": { + "type": "string", + "example": "abc123", + "description": "Obfuscated partner user ID" + }, + "email": { + "type": "string", + "example": "user@example.com" + }, + "name": { + "type": "string", + "example": "John Doe" + } + }, + "required": ["id", "email", "name"] + }, "ApplicantList": { "type": "object", "properties": { @@ -6647,6 +6667,13 @@ "items": { "type": "string" } + }, + "assignees": { + "type": "array", + "description": "List of partner users assigned to this application", + "items": { + "$ref": "#/components/schemas/Assignee" + } } }, "required": [ @@ -6806,6 +6833,13 @@ "type": "string" } }, + "assignees": { + "type": "array", + "description": "List of partner users assigned to this application", + "items": { + "$ref": "#/components/schemas/Assignee" + } + }, "pet_rent_value": { "$ref": "#/components/schemas/Money", "nullable": true