forked from indexdata/mod-harvester-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreviousJob.json
62 lines (62 loc) · 2.22 KB
/
previousJob.json
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
{
"description": "Select settings (all read-only) from a Harvest configuration, populated to log the settings of a previous harvest job.",
"type": "object",
"properties": {
"id" : {
"description": "unique identifier for this report of a single harvest run - a UUID",
"type": "string"
},
"name": {
"description": "The name of the harvest configuration at the time of logging the harvest run.",
"type": "string"
},
"harvestableId" : {
"description": "Unique identifier for the harvest configuration.",
"type": "integer"
},
"type" : {
"description": "The type of harvest job (bulk XML or OAI-PMH)",
"type": "string"
},
"url" : {
"description": "The URL(s) used for retrieving the records that were harvested during this job.",
"type": "string"
},
"allowErrors" : {
"description": "Indicates whether the job was configured to continue in case of (certain classes of) errors.",
"type": "boolean"
},
"recordLimit" : {
"description": "Indicates the limit -- if any -- on the maximum number of records to load according to the configuration.",
"type": "integer"
},
"transformation": {
"description": "The name of the transformation pipeline that was used for the harvest job.",
"type": "string"
},
"storage": {
"description": "The name of the storage that was used for persisting the records harvested during the job.",
"type": "string"
},
"status": {
"description": "The outcome of the job. This would usually be the status after the job finished but it's possible to retrieve a history entry for a still running job.",
"type": "string"
},
"started" : {
"description": "Timestamp indicating when the job began.",
"type": "string"
},
"finished" : {
"description": "Timestamp indicating when the job completed.",
"type": "string"
},
"amountHarvested" : {
"description": "The number of (incoming) records that were processed.",
"type": "integer"
},
"message" : {
"description": "A description of the outcome of the harvest job, for example update statistics or a fatal error.",
"type": "string"
}
}
}