ProjectEvaluationRejectedEvent
v2

Project

Details

Example event payload

1{
2  "id": 6148019,
3  "createdAt": "2023-07-11T04:26:18.874Z",
4  "updatedAt": "2023-07-11T04:26:19.472Z",
5  "eventName": "ProjectEvaluationRejectedEvent",
6  "keyId": "96fce957-30fb-4a54-9c2e-713686ec6ae0",
7  "eventData": {
8    "name": "ProjectEvaluationRejectedEvent",
9    "type": "event",
10    "keyId": "96fce957-30fb-4a54-9c2e-713686ec6ae0",
11    "version": 2,
12    "payload": {
13      "user": {
14        "id": "9a60945c-0a96-4013-bf22-d0689d544341"
15      },
16      "talent": {
17        "id": "7e60945c-0a96-4013-bf22-d0689d544341"
18      },
19      "projectEvaluation": {
20        "id": "e67f8653-8892-4e2a-8856-91e3c3b2d050",
21        "status": "REJECTED",
22        "variant": "FEASIBILITY",
23        "projectId": "874eb120-2122-482c-81bc-95f40f5f259d",
24        "projectEvaluationRatingIds": [
25          "d19f3375-f24e-4779-a187-ebf762fc9634",
26          "bae31811-6a9e-48bd-92e7-147aa552c9ad",
27          "3a9c28b5-9d40-44a3-9e65-108264620afd",
28          "479d5c87-93ae-4b03-ba1f-b413dfd2d008",
29          "fe3aa6a3-dbc5-4da4-9a00-f2ccb862a4d9"
30        ]
31      }
32    }
33  },
34  "status": "ACKNOWLEDGED",
35  "publisherNodeId": "phoenix-production-788774c7f-8xmfs",
36  "processorNodeId": "phoenix-production-788774c7f-v2hp2",
37  "version": 2,
38  "userId": "9a60945c-0a96-4013-bf22-d0689d544341",
39  "talentId": "7e60945c-0a96-4013-bf22-d0689d544341"
40}
41

ProjectEvaluationRejectedEvent payload

ProjectEvaluationRejectedEvent Schema (json)
{
  "$id": "ProjectEvaluationRejectedEventPayloadTSchema",
  "type": "object",
  "properties": {
    "user": {
      "type": "object",
      "properties": { "id": { "type": "string" } },
      "required": ["id"]
    },
    "talent": {
      "type": "object",
      "properties": { "id": { "type": "string" } },
      "required": ["id"]
    },
    "projectEvaluation": {
      "type": "object",
      "properties": {
        "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" }
          ]
        },
        "projectId": { "type": "string" },
        "projectEvaluationRatingIds": {
          "anyOf": [
            {
              "description": "Project evaluation ids associated with this project evaluation rating.",
              "type": "array",
              "items": { "type": "string" }
            },
            { "type": "null" }
          ]
        }
      },
      "required": ["id", "status", "variant", "projectId"]
    }
  },
  "required": ["user", "talent", "projectEvaluation"]
}


Edit this pageLast updated on 2024/8/5