Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions screening-api-docs/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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
Expand Down