PendingTalentCreatedEvent
v1

Pending talent created

Details

Example event payload

1{
2  "id": 6109836,
3  "createdAt": "2023-07-10T04:45:46.691Z",
4  "updatedAt": "2023-07-10T04:45:46.808Z",
5  "eventName": "PendingTalentCreatedEvent",
6  "keyId": "43095f17-af63-41ff-a982-a76873ac21b4",
7  "eventData": {
8    "name": "PendingTalentCreatedEvent",
9    "type": "event",
10    "keyId": "43095f17-af63-41ff-a982-a76873ac21b4",
11    "version": 1,
12    "pendingTalent": {
13      "id": "2cc8cf01-238b-4a7e-9a19-e622b50c5ad1",
14      "email": "laura.daille@hotmail.fr",
15      "lastName": "Daillé",
16      "createdAt": "2023-07-10T08:45:46.555Z",
17      "deletedAt": null,
18      "firstName": "Laura",
19      "updatedAt": "2023-07-10T08:45:46.555Z",
20      "programToAssign": {
21        "id": "dceea9b7-5740-4f33-b080-a54c27223107",
22        "title": "PHOENIX STANDARD CAREER PROGRAM",
23        "status": "ACTIVE",
24        "editorId": "e55a8980-a5a1-4c42-8dc6-26e7230fe5a1",
25        "createdAt": "2022-01-17T12:46:52.077Z",
26        "deletedAt": null,
27        "updatedAt": "2023-06-05T15:07:47.166Z",
28        "description": "Phoenix official standard career program",
29        "internalTitle": "!! PHOENIX STANDARD CAREER PROGRAM !!",
30        "activeProgramId": null,
31        "phaseToProgramsKeys": [
32          {
33            "id": "0dad3ee6-9f08-414c-a726-6f5e8a56ae48",
34            "phase": {
35              "id": "80ed92bf-2136-4082-a84a-3d65f1633384"
36            },
37            "program": {
38              "id": "dceea9b7-5740-4f33-b080-a54c27223107"
39            }
40          },
41          {
42            "id": "78772de0-c892-4958-8bb5-5df164fc0bdc",
43            "phase": {
44              "id": "08d280a8-2c39-4828-b204-dc50b188d66d"
45            },
46            "program": {
47              "id": "dceea9b7-5740-4f33-b080-a54c27223107"
48            }
49          },
50          {
51            "id": "7fc4abde-7e78-470f-b6c5-ac6d2a3ca9cf",
52            "phase": {
53              "id": "b6c2bc85-b152-412f-b3ee-a76714f99f39"
54            },
55            "program": {
56              "id": "dceea9b7-5740-4f33-b080-a54c27223107"
57            }
58          },
59          {
60            "id": "baf7038c-6d78-4bc7-ac5e-7b6878e1488a",
61            "phase": {
62              "id": "8bc007dd-f820-4bcd-86e0-240904616bc8"
63            },
64            "program": {
65              "id": "dceea9b7-5740-4f33-b080-a54c27223107"
66            }
67          },
68          {
69            "id": "53699e67-a593-49ac-a3d4-c77a3880cffe",
70            "phase": {
71              "id": "d3f416eb-8ba0-4a20-926e-508b87095e4c"
72            },
73            "program": {
74              "id": "dceea9b7-5740-4f33-b080-a54c27223107"
75            }
76          }
77        ]
78      }
79    }
80  },
81  "status": "ACKNOWLEDGED",
82  "publisherNodeId": "phoenix-production-788774c7f-9dccm",
83  "processorNodeId": "phoenix-production-788774c7f-jz25k",
84  "version": 1,
85  "userId": null,
86  "talentId": null
87}
88

PendingTalentCreatedEvent payload

PendingTalentCreatedEvent Schema (json)
{
  "$id": "PendingTalentCreatedEventPayloadTSchema",
  "type": "object",
  "properties": {
    "pendingTalent": {
      "$id": "PendingTalentEntity",
      "type": "object",
      "properties": {
        "createdAt": { "format": "datetime", "type": "string" },
        "updatedAt": {
          "anyOf": [
            { "format": "datetime", "type": "string" },
            { "type": "null" }
          ]
        },
        "deletedAt": {
          "anyOf": [
            { "format": "datetime", "type": "string" },
            { "type": "null" }
          ]
        },
        "id": { "type": "string" },
        "programToAssign": {},
        "email": { "type": "string" },
        "firstName": { "type": "string" },
        "lastName": { "type": "string" }
      },
      "required": [
        "createdAt",
        "id",
        "programToAssign",
        "email",
        "firstName",
        "lastName"
      ]
    }
  },
  "required": ["pendingTalent"]
}


Edit this pageLast updated on 2024/8/5