ProjectUpdatedEventv1
Project
You are currently viewing an old version of this event (1).Read latest version →
Details
Example event payload
1{
2 "id": 6118206,
3 "createdAt": "2023-07-10T07:12:36.420Z",
4 "updatedAt": "2023-07-10T07:12:36.453Z",
5 "eventName": "ProjectUpdatedEvent",
6 "keyId": "fbf34817-3ada-4764-b192-f886d20b5e27",
7 "eventData": {
8 "name": "ProjectUpdatedEvent",
9 "type": "event",
10 "keyId": "fbf34817-3ada-4764-b192-f886d20b5e27",
11 "project": {
12 "id": "1c389fb5-f0e0-4da0-b3c8-46f9782781a2",
13 "name": "Aventure entrepreneuriale ",
14 "roleId": 1241,
15 "status": "VALIDATED",
16 "createdAt": "2023-06-22T16:07:47.998Z",
17 "deletedAt": null,
18 "updatedAt": "2023-07-10T11:12:36.392Z",
19 "archivedAt": null,
20 "description": "Développer une plateforme web et/ou application qui connecte les gens, facilite la transmission des savoirs autour du hobby",
21 "talentProfileId": "27dff62e-067c-4e26-b979-2e840d68492a",
22 "pillarCriteriaIds": ["00bdbcc2-3e2d-4314-a4e9-adf26b9e3e73", "0f4b06a6-7f8d-46ab-afa1-bc573a2b9496", "1572c7e4-876d-4f95-9eca-353d2bb42eb6", "179d5397-83c0-41e7-a0f9-199ecacb6f08", "25f63a81-bf87-4cfb-aafb-44d7125cf45a", "2b5cc220-cb8e-4430-a919-0cf25a513364", "3537e292-9ca6-4bfd-b86d-e6edd4cd1ddf", "374a6606-505c-4fd7-b23c-3617b9b699bc", "39479c7f-7b99-4899-84e1-4b89dead0024", "47e4b0fa-8ad9-4d1a-92f5-0dfeeddbebb3", "4910b730-99ce-440f-9311-f97c9125595d", "491390a8-61ff-4ffd-8196-555ea6c1df57", "584c0cf7-11d0-48e4-8a7c-bbc566d6fc63", "6562f2b4-d0b3-4038-86e5-f7dfd515870f", "69563ca0-506c-4ed9-9718-347aa785c1e6", "6f9a561f-6206-4a62-b419-784aca10a667", "84c84273-34f2-40b7-91f8-2643f7e4c36c", "981c20a0-1c6e-42fd-91d4-6a74f8fe62cf", "9aeab4ac-6c76-4908-a3ea-9d245cd81aa6", "9fd03fc5-3806-4ef8-a01f-5e55433c5f95", "a9e319b1-a96b-4f07-aba3-8038df34b6d6", "b157dc12-b682-4ae9-b9b4-6bac456f5d59", "beb6b580-6a4a-437f-b25f-731769730e02", "bfd125bf-e21b-40dc-818d-bbbe6132036f", "d89d167a-d48e-4a68-80ae-338d31787c3b", "dae28ffe-821c-45b7-98b1-823ed75961e9", "dfbcc5f7-debe-4b08-9915-5e4bb368b2e4", "e190669e-80d1-4d8c-83f4-e0b68d9c627c", "f18c00cb-e7b3-403b-8c54-f8f36fa6a2e2", "f4cead0d-fba2-45b5-acd3-592d0987a89b"],
23 "projectEvaluationIds": ["ff4ea8fe-f6a7-4d58-974f-8b73b1f17a43", "b1aa0577-2701-489f-b179-f3fd6020c8d6", "42fddfa8-d3c1-4ed1-be28-d005bf23d10b"]
24 },
25 "version": 1
26 },
27 "status": "ACKNOWLEDGED",
28 "publisherNodeId": "phoenix-production-788774c7f-jz25k",
29 "processorNodeId": "phoenix-production-788774c7f-9dccm",
30 "version": 1,
31 "userId": null,
32 "talentId": null
33}ProjectUpdatedEvent payload
ProjectUpdatedEvent Schema (json)
{
"$id": "ProjectUpdatedEventPayloadTSchema",
"type": "object",
"properties": {
"project": {
"$id": "ProjectEntity",
"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" },
"name": { "description": "Project name", "type": "string" },
"description": {
"anyOf": [
{ "description": "Project description", "type": "string" },
{ "type": "null" }
]
},
"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" }
]
},
"talentProfile": {
"description": "Talent Profile object associated with this project. The owner."
},
"talentProfileId": {
"description": "ID of the talent profile associated with this project. The owner.",
"type": "string"
},
"role": {
"anyOf": [
{ "description": "Role associated with this project." },
{ "type": "null" }
]
},
"roleId": {
"anyOf": [
{
"description": "ID of the role associated with this project. References career-explorer api.",
"nullable": true,
"type": "number"
},
{ "type": "null" }
]
},
"pillarCriteria": {
"anyOf": [{ "type": "array", "items": {} }, { "type": "null" }]
},
"pillarCriteriaIds": {
"anyOf": [
{
"description": "Pillar criteria ids associated with this project.",
"type": "array",
"items": { "type": "string" }
},
{ "type": "null" }
]
},
"archivedAt": { "format": "datetime", "type": "string" },
"projectEvaluations": {
"anyOf": [
{
"description": "Project evaluations associated with this project.",
"type": "array",
"items": {}
},
{ "type": "null" }
]
},
"projectEvaluationIds": {
"anyOf": [
{
"description": "Project ids associated with this talent profile.",
"type": "array",
"items": { "type": "string" }
},
{ "type": "null" }
]
},
"feasibility": {},
"realism": {},
"motivation": {}
},
"required": [
"createdAt",
"id",
"name",
"status",
"talentProfile",
"talentProfileId",
"roleId",
"archivedAt",
"feasibility",
"realism",
"motivation"
]
}
},
"required": ["project"]
}
Domain Graph
Edit this pageLast updated on 2024/8/5