Skip to content

Commit afee629

Browse files
committed
fix: add proper entry-points.json schema for line_by_line_test
1 parent a617f8f commit afee629

1 file changed

Lines changed: 37 additions & 4 deletions

File tree

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
{
2-
"$schema": "https://cloud.uipath.com/draft/2024-12/entry-point",
3-
"$id": "entry-points.json",
4-
"entryPoints": []
5-
}
2+
"$schema": "https://cloud.uipath.com/draft/2024-12/entry-point",
3+
"$id": "entry-points.json",
4+
"entryPoints": [
5+
{
6+
"filePath": "main",
7+
"uniqueId": "main",
8+
"type": "function",
9+
"input": {
10+
"type": "object",
11+
"properties": {
12+
"items": {
13+
"type": "array",
14+
"items": {
15+
"type": "string"
16+
}
17+
}
18+
},
19+
"description": "Input schema.",
20+
"required": [
21+
"items"
22+
]
23+
},
24+
"output": {
25+
"type": "object",
26+
"properties": {
27+
"result": {
28+
"type": "string"
29+
}
30+
},
31+
"description": "Output schema.",
32+
"required": [
33+
"result"
34+
]
35+
}
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)