ProjectEvaluationRejectedEvent
v1

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

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": 1,
12    "projectEvaluation": {
13      "id": "e67f8653-8892-4e2a-8856-91e3c3b2d050",
14      "status": "REJECTED",
15      "resetAt": null,
16      "variant": "FEASIBILITY",
17      "createdAt": "2023-07-11T08:24:58.169Z",
18      "deletedAt": null,
19      "projectId": "874eb120-2122-482c-81bc-95f40f5f259d",
20      "updatedAt": "2023-07-11T08:26:18.866Z",
21      "projectEvaluationRatingIds": [
22        "d19f3375-f24e-4779-a187-ebf762fc9634",
23        "bae31811-6a9e-48bd-92e7-147aa552c9ad",
24        "3a9c28b5-9d40-44a3-9e65-108264620afd",
25        "479d5c87-93ae-4b03-ba1f-b413dfd2d008",
26        "fe3aa6a3-dbc5-4da4-9a00-f2ccb862a4d9"
27      ]
28    }
29  },
30  "status": "ACKNOWLEDGED",
31  "publisherNodeId": "phoenix-production-788774c7f-8xmfs",
32  "processorNodeId": "phoenix-production-788774c7f-v2hp2",
33  "version": 1,
34  "userId": null,
35  "talentId": null
36}
37

ProjectEvaluationRejectedEvent payload

ProjectEvaluationRejectedEvent Schema (json)
{
  "$id": "ProjectEvaluationRejectedEventPayloadTSchema",
  "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"
      ]
    }
  },
  "required": ["projectEvaluation"]
}


Edit this pageLast updated on 2024/8/5