ProjectUnarchivedEventv2
Project
Details
Example event payload
1{
2 "id": 6311812,
3 "createdAt": "2023-07-17T11:27:50.388Z",
4 "updatedAt": "2023-07-17T11:27:50.421Z",
5 "eventName": "ProjectUnarchivedEvent",
6 "keyId": "5c59fe36-b5d6-46c3-b091-6e71c048d50b",
7 "eventData": {
8 "name": "ProjectUnarchivedEvent",
9 "type": "event",
10 "keyId": "5c59fe36-b5d6-46c3-b091-6e71c048d50b",
11 "payload": {
12 "user": {
13 "id": "a34c11e1-f483-4453-85ab-043936876cff"
14 },
15 "talent": {
16 "id": "e35c11e1-f483-4453-85ab-043936876cff"
17 },
18 "project": {
19 "id": "0b0e7de4-0933-41e7-9857-06782b5374d3",
20 "name": "Teegolf",
21 "roleId": 1027,
22 "status": "IN_PROGRESS",
23 "archivedAt": null,
24 "description": "C'est un bar/golf/parc de loisir",
25 "talentProfileId": "c4d1fab2-6bc7-4094-ae14-7fef2d97b2e2",
26 "pillarCriteriaIds": [
27 "08a0731c-6be8-4862-aa75-609ffdebd82a",
28 "0fd86ef8-699b-4847-a7dd-8d1a1d83df23",
29 "1572c7e4-876d-4f95-9eca-353d2bb42eb6",
30 "182a8489-d785-415d-8db3-58fe47f92633",
31 "aa36afec-fa67-4b73-aeb0-5fb3a85b0ace",
32 "b4731fed-c519-4a37-b707-a6332f8893b1",
33 "fe13ef75-c866-459a-8e67-1743493682bf"
34 ],
35 "projectEvaluationIds": [
36 "fc39daf8-20de-44ed-8c03-c865a337ba30",
37 "a6d402a6-07ef-4305-af86-20b333133915",
38 "5817e553-c930-4069-bb09-5848bd1ddb51"
39 ]
40 }
41 },
42
43 "version": 2
44 },
45 "status": "ACKNOWLEDGED",
46 "publisherNodeId": "phoenix-production-5648b58f5c-zv774",
47 "processorNodeId": "phoenix-production-5648b58f5c-trnbr",
48 "version": 2,
49 "userId": "a34c11e1-f483-4453-85ab-043936876cff",
50 "talentId": "e35c11e1-f483-4453-85ab-043936876cff"
51}
52ProjectUnarchivedEvent payload
ProjectUnarchivedEvent Schema (json)
{
"$id": "ProjectUnarchivedEventPayloadTSchema",
"type": "object",
"properties": {
"user": {
"type": "object",
"properties": { "id": { "type": "string" } },
"required": ["id"]
},
"talent": {
"type": "object",
"properties": { "id": { "type": "string" } },
"required": ["id"]
},
"project": {
"type": "object",
"properties": {
"id": { "type": "string" },
"status": {
"default": "IN_PROGRESS",
"description": "Project status",
"anyOf": [
{ "const": "ARCHIVED", "type": "string" },
{ "const": "IN_PROGRESS", "type": "string" },
{ "const": "VALIDATED", "type": "string" },
{ "const": "DELETED", "type": "string" }
]
},
"talentProfileId": {
"description": "ID of the talent profile associated with this project. The owner.",
"type": "string"
},
"roleId": {
"anyOf": [
{
"description": "ID of the role associated with this project. References career-explorer api.",
"nullable": true,
"type": "number"
},
{ "type": "null" }
]
},
"pillarCriteriaIds": {
"anyOf": [
{
"description": "Pillar criteria ids associated with this project.",
"type": "array",
"items": { "type": "string" }
},
{ "type": "null" }
]
},
"archivedAt": {
"anyOf": [
{ "format": "datetime", "type": "string" },
{ "type": "null" }
]
},
"projectEvaluationIds": {
"anyOf": [
{
"description": "Project ids associated with this talent profile.",
"type": "array",
"items": { "type": "string" }
},
{ "type": "null" }
]
}
},
"required": ["id", "status", "talentProfileId", "roleId", "archivedAt"]
}
},
"required": ["user", "talent", "project"]
}
Domain Graph
Edit this pageLast updated on 2024/8/5