1{
2 "title": "Add two integers",
3 "type": "object",
4 "schemaVersion": 1,
5 "description": "This actor will copy all the tasks of a source actor and source user under the target actor and target user.",
6 "properties": {
7 "sourceActorId": {
8 "title": "Source Actor ID",
9 "type": "string",
10 "description": "ID of a source actor",
11 "editor": "textfield"
12 },
13 "sourceApiToken": {
14 "title": "Source user API token",
15 "type": "string",
16 "description": "API token of a source user",
17 "editor": "textfield",
18 "isSecret": true
19 },
20 "targetActorId": {
21 "title": "Target Actor ID",
22 "type": "string",
23 "description": "ID of a target actor",
24 "editor": "textfield"
25 },
26 "targetApiToken": {
27 "title": "Target user API token",
28 "type": "string",
29 "description": "API token of a target user",
30 "editor": "textfield",
31 "isSecret": true
32 },
33 "isDryRun": {
34 "title": "Dry run",
35 "type": "boolean",
36 "description": "If dry run is enabled then actor will only list the tasks to be copied."
37 }
38 },
39 "required": ["sourceActorId", "sourceApiToken", "targetActorId", "targetApiToken"]
40}