ProjectEvaluationResetEvent
v1

Project
You are currently viewing an old version of this event (1).Read latest version →

Details

Example event payload

1{
2	"id": 6119688,
3	"createdAt": "2023-07-10T07:46:58.258Z",
4	"updatedAt": "2023-07-10T07:46:58.333Z",
5	"eventName": "ProjectEvaluationResetEvent",
6	"keyId": "dc813325-edd8-41ae-822f-430f207599d5",
7	"eventData": {
8		"name": "ProjectEvaluationResetEvent",
9		"type": "event",
10		"keyId": "dc813325-edd8-41ae-822f-430f207599d5",
11		"version": 1,
12		"projectEvaluation": {
13			"id": "dc08328c-c0f7-4d86-8900-9009c0286534",
14			"status": "UNSET",
15			"resetAt": "2023-07-10T11:46:57.954Z",
16			"variant": "FEASIBILITY",
17			"createdAt": "2023-07-10T11:46:32.004Z",
18			"deletedAt": null,
19			"projectId": "694659d0-74e2-4106-8dcd-d9c1f0aa46c0",
20			"updatedAt": "2023-07-10T11:46:57.976Z",
21			"projectEvaluationRatingIds": []
22		},
23		"professionalProjectEvaluation": {
24			"ratings": [{
25				"score": 9.1625,
26				"driverId": 206
27			}, {
28				"score": 7.183333333333334,
29				"driverId": 200
30			}, {
31				"score": 6.8,
32				"driverId": 207
33			}, {
34				"score": 6.7,
35				"driverId": 212
36			}, {
37				"score": 3.8604166666666666,
38				"driverId": 202
39			}],
40			"softSkills": [{
41				"label": "sensibilité artistique",
42				"value": 7.5,
43				"target_value": 2.11
44			}, {
45				"label": "imagination",
46				"value": 9,
47				"target_value": 3.26
48			}, {
49				"label": "patience",
50				"value": 7.5,
51				"target_value": 0
52			}, {
53				"label": "goût pour l'aventure",
54				"value": 9,
55				"target_value": 0
56			}, {
57				"label": "curiosité intellectuelle",
58				"value": 6.5,
59				"target_value": 3
60			}, {
61				"label": "tolérance",
62				"value": 6.5,
63				"target_value": 0
64			}, {
65				"label": "assurance",
66				"value": 7,
67				"target_value": -0.33
68			}, {
69				"label": "prudence",
70				"value": 6,
71				"target_value": 4.83
72			}, {
73				"label": "ambition",
74				"value": 7,
75				"target_value": 0
76			}, {
77				"label": "sens des responsabilités",
78				"value": 6.5,
79				"target_value": 4.7
80			}, {
81				"label": "Collaboration",
82				"value": 8,
83				"target_value": 4.09
84			}, {
85				"label": "sociabilité",
86				"value": 7,
87				"target_value": 0
88			}, {
89				"label": "dynamisme",
90				"value": 9,
91				"target_value": 0
92			}, {
93				"label": "audace",
94				"value": 8,
95				"target_value": 3.89
96			}, {
97				"label": "moralité",
98				"value": 9,
99				"target_value": 0
100			}, {
101				"label": "altruisme",
102				"value": 1,
103				"target_value": 1.45
104			}, {
105				"label": "sympathie",
106				"value": 9.5,
107				"target_value": 2.57
108			}, {
109				"label": "résistance au stress",
110				"value": 5,
111				"target_value": 0
112			}],
113			"employability": "low",
114			"stateCertification": false,
115			"intermediateWorkActivities": [{
116				"score": 5.964,
117				"title": "Modifier des textes ou des documents."
118			}, {
119				"score": 5.9388,
120				"title": "Rédiger à des fins artistiques ou commerciales."
121			}, {
122				"score": 5.383,
123				"title": "Développer des supports marketing ou promotionnels."
124			}, {
125				"score": 5.04,
126				"title": "Surveiller les tendances ou les événements."
127			}, {
128				"score": 4.998,
129				"title": "Collecter des données sur les besoins des consommateurs ou leurs opinions."
130			}]
131		}
132	},
133	"status": "ACKNOWLEDGED",
134	"publisherNodeId": "phoenix-production-788774c7f-jz25k",
135	"processorNodeId": "phoenix-production-788774c7f-8xmfs",
136	"version": 1,
137	"userId": null,
138	"talentId": "7e60945c-0a96-4013-bf22-d0689d544341"
139}

ProjectEvaluationResetEvent payload

ProjectEvaluationResetEvent Schema (json)
{
  "$id": "ProjectEvaluationResetEventPayloadTSchema",
  "type": "object",
  "properties": {
    "projectEvaluation": {
      "$id": "ProjectEvaluationEntity",
      "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" },
        "status": {
          "default": "UNSET",
          "description": "Project evaluation status",
          "anyOf": [
            { "const": "UNSET", "type": "string" },
            { "const": "CONFIRMED", "type": "string" },
            { "const": "REJECTED", "type": "string" }
          ]
        },
        "variant": {
          "description": "Project evaluation variant",
          "anyOf": [
            { "const": "FEASIBILITY", "type": "string" },
            { "const": "REALISM", "type": "string" },
            { "const": "MOTIVATION", "type": "string" }
          ]
        },
        "project": {},
        "projectId": { "type": "string" },
        "resetAt": {
          "anyOf": [
            { "format": "datetime", "type": "string" },
            { "type": "null" }
          ]
        },
        "projectEvaluationRatings": {
          "anyOf": [
            {
              "description": "Project evaluation ratings associated with this project evaluation.",
              "type": "array",
              "items": {}
            },
            { "type": "null" }
          ]
        },
        "projectEvaluationRatingIds": {
          "anyOf": [
            {
              "description": "Project evaluation ids associated with this project evaluation rating.",
              "type": "array",
              "items": { "type": "string" }
            },
            { "type": "null" }
          ]
        }
      },
      "required": [
        "createdAt",
        "id",
        "status",
        "variant",
        "project",
        "projectId",
        "resetAt"
      ]
    },
    "professionalProjectEvaluation": {
      "$id": "ProfessionalProjectEvaluationEntity",
      "type": "object",
      "properties": {
        "stateCertification": { "type": "boolean" },
        "employability": {
          "anyOf": [
            { "const": "high", "type": "string" },
            { "const": "medium", "type": "string" },
            { "const": "low", "type": "string" },
            { "const": "unknown", "type": "string" }
          ]
        },
        "intermediateWorkActivities": { "type": "array", "items": {} },
        "softSkills": { "type": "array", "items": {} },
        "ratings": { "type": "array", "items": {} },
        "role": {}
      },
      "required": [
        "stateCertification",
        "employability",
        "intermediateWorkActivities",
        "softSkills",
        "ratings",
        "role"
      ]
    }
  },
  "required": ["projectEvaluation", "professionalProjectEvaluation"]
}


Edit this pageLast updated on 2024/8/5