-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinput-schema.json
More file actions
88 lines (88 loc) · 2.28 KB
/
input-schema.json
File metadata and controls
88 lines (88 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"additionalProperties": false,
"required": [
"runid",
"deletesource",
"source",
"scratch",
"function"
],
"properties": {
"runid": {
"additionalProperties": false,
"type": "string",
"title": "Unique id used in titles and folders"
},
"deletesource": {
"additionalProperties": false,
"type": "boolean",
"default": false,
"title": "If or not to delete source path after archiving is complete"
},
"source": {
"additionalProperties": false,
"type": "object",
"format": "globus-collection",
"title": "Source of data collection ID and path",
"required": [
"id",
"path"
],
"properties":{
"id": {
"type": "string",
"format": "uuid"
},
"path": {
"type": "string"
}
}
},
"scratch": {
"additionalProperties": false,
"type": "object",
"format": "globus-collection",
"title": "Scratch Target",
"required": [
"id",
"path"
],
"properties":{
"id": {
"title": "Globus endpoint to transfer data to",
"type": "string",
"format": "uuid",
"default": "e0370902-9f48-11e9-821b-02b7a92d8e58"
},
"path": {
"title": "Path on globus server to write data to",
"type": "string",
"default": "/scratch/support_root/support/brockp/dest"
}
}
},
"function": {
"additionalProperties": false,
"type": "object",
"title": "globus compute inputs",
"required": [
"endpoint",
"functionfunc"
],
"properties": {
"endpoint": {
"title": "UUID of globus-compute endpoint to run on",
"type": "string",
"format": "uuid",
"default": "3d0f563e-f797-40ba-a960-e4614eb258a3"
},
"functionfunc": {
"title": "UUID of globus-compute function to call",
"type": "string",
"format": "uuid",
"default": "1830ef69-778c-44ef-8c23-c687f7734eb1"
}
}
}
}
}