Bug 30982: Add Koha::BackgroundJobs->filter_by_current
[koha.git] / api / v1 / swagger / definitions / background_job.yaml
1 ---
2 type: object
3 properties:
4   background_job_id:
5     type: integer
6     description: internally assigned background_job identifier
7     readOnly: true
8   status:
9     description: background_job status
10     type:
11       - string
12       - "null"
13   progress:
14     description: background_job progress
15     type:
16       - string
17       - "null"
18   size:
19     description: background_job size
20     type:
21       - string
22       - "null"
23   patron_id:
24     description: background_job enqueuer
25     type:
26       - string
27       - "null"
28   type:
29     description: background_job type
30     type:
31       - string
32       - "null"
33   queue:
34     description: background_job queue
35     type:
36       - string
37       - "null"
38   data:
39     description: background_job data
40     type:
41       - string
42       - "null"
43   context:
44     description: background_job context
45     type:
46       - string
47       - "null"
48   enqueued_on:
49     description: background_job enqueue date
50     type:
51       - string
52       - "null"
53   started_on:
54     description: background_job start date
55     type:
56       - string
57       - "null"
58   ended_on:
59     description: background_job end date
60     type:
61       - string
62       - "null"
63 additionalProperties: false