Compare commits
17 Commits
main
...
sequence-1
| Author | SHA1 | Date | |
|---|---|---|---|
| f0fa374e62 | |||
| d572c94b58 | |||
| 6ba98dede9 | |||
| 9b70ad9a5b | |||
| 8050ac3b9b | |||
| bb9d5c7129 | |||
| 7b5efd3ff4 | |||
| 03cf703821 | |||
| b62a7e4d4c | |||
| 4987f4f27a | |||
| ae4a05e2b7 | |||
| 4334e369b3 | |||
| baa9211b23 | |||
| 0e092448c8 | |||
| 3ae548c213 | |||
| 053dc72888 | |||
| 5700f8e10d |
174
flows.json
174
flows.json
@ -1,19 +1,159 @@
|
|||||||
{
|
{
|
||||||
"nodes": [
|
"nodes": [
|
||||||
{
|
{
|
||||||
"id": "c2w3wcw04fjyio9un4f",
|
"id": "c2w3wcw04fjyio9un4f",
|
||||||
"data": { "label": "Request" },
|
"position": {
|
||||||
"position": { "x": 0, "y": 150 },
|
"x": 0,
|
||||||
"type": "requestNode"
|
"y": 0
|
||||||
},
|
},
|
||||||
{
|
"data": {
|
||||||
"id": "c2xjc7k07ahdxoi7ad7",
|
"label": "Request",
|
||||||
"data": { "label": "+" },
|
"request_schema": {
|
||||||
"position": { "x": 0, "y": 150 },
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"type": "placeholder"
|
"properties": {
|
||||||
|
"application_id": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "Unique identifier for the application.",
|
||||||
|
"required": []
|
||||||
|
},
|
||||||
|
"tu_credit_report": {
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "User Credit report",
|
||||||
|
"properties": {
|
||||||
|
"creditBureau": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "Credit bureau details"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"creditBureau": {
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "Credit bureau details",
|
||||||
|
"source": null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": []
|
||||||
}
|
}
|
||||||
],
|
},
|
||||||
"edges": [
|
"type": "requestNode",
|
||||||
{ "id": "c2w3wcw04fjyio9un4f=>c2xjc7k07ahdxoi7ad7", "source": "c2w3wcw04fjyio9un4f", "target": "c2xjc7k07ahdxoi7ad7", "type": "placeholder" }
|
"positionAbsolute": {
|
||||||
]
|
"x": 0,
|
||||||
}
|
"y": 0
|
||||||
|
},
|
||||||
|
"width": 260,
|
||||||
|
"height": 36
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "mbv5bk0d7enxum9v24m",
|
||||||
|
"position": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 150
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"label": "+",
|
||||||
|
"nodeConfig": {
|
||||||
|
"activityConfig": {
|
||||||
|
"retryPolicy": {
|
||||||
|
"maximumAttempts": 1,
|
||||||
|
"initialInterval": 1000,
|
||||||
|
"backoffCoefficient": 2,
|
||||||
|
"maximumInterval": 100000
|
||||||
|
},
|
||||||
|
"timeouts": {
|
||||||
|
"startToCloseTimeout": 10000,
|
||||||
|
"scheduleToStartTimeout": 10000,
|
||||||
|
"scheduleToCloseTimeout": 10000,
|
||||||
|
"heartbeatTimeout": 86
|
||||||
|
},
|
||||||
|
"taskQueue": {
|
||||||
|
"taskQueueName": ""
|
||||||
|
},
|
||||||
|
"advancedSettings": {
|
||||||
|
"cancellationType": "TRY_CANCEL",
|
||||||
|
"heartbeatEnabled": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"blockName": "m-1-v-1",
|
||||||
|
"commitId": "fe9e388f36e2c83178adebcef847fb396af7a587",
|
||||||
|
"repo_url": "http://centurion-version-control.default.svc.cluster.local:3000/Centurion/blocks-transformer.git",
|
||||||
|
"schema": {
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"application_id": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "Unique identifier for the application.",
|
||||||
|
"source": "$root.application_id"
|
||||||
|
},
|
||||||
|
"creditBureau": {
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "Credit bureau details",
|
||||||
|
"source": "$root.tu_credit_report.data"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"outputSchema": {
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"application_id": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Unique identifier for the application"
|
||||||
|
},
|
||||||
|
"prediction": {
|
||||||
|
"type": "number",
|
||||||
|
"description": "Model's predicted probability score"
|
||||||
|
},
|
||||||
|
"grade": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "HD Model Grade"
|
||||||
|
},
|
||||||
|
"reason_description": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Reason for the model decision"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"application_id",
|
||||||
|
"prediction",
|
||||||
|
"grade",
|
||||||
|
"reason_description"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": "transformerNode",
|
||||||
|
"positionAbsolute": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 150
|
||||||
|
},
|
||||||
|
"width": 260,
|
||||||
|
"height": 79,
|
||||||
|
"selected": false,
|
||||||
|
"dragging": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"edges": [
|
||||||
|
{
|
||||||
|
"id": "c2w3wcw04fjyio9un4f=>mbv5bk0d7enxum9v24m",
|
||||||
|
"source": "c2w3wcw04fjyio9un4f",
|
||||||
|
"target": "mbv5bk0d7enxum9v24m",
|
||||||
|
"type": "workflow"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -1 +1,27 @@
|
|||||||
{}
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
|
"properties": {
|
||||||
|
"application_id": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "Unique identifier for the application.",
|
||||||
|
"required": []
|
||||||
|
},
|
||||||
|
"tu_credit_report": {
|
||||||
|
"type": [
|
||||||
|
"object",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"description": "User Credit report",
|
||||||
|
"properties": {
|
||||||
|
"data": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "Credit bureau details"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": []
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user