Skip to content

Commit

Permalink
update processing_times api spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Oct 14, 2024
1 parent f05c6c9 commit 6b6da4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/api/src/hyp3_api/api-spec/openapi-spec.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -408,17 +408,17 @@ components:

processing_times:
description: >
A list of run times for the job's processing steps in the order that they were executed. For example,
a job comprised of a single processing step would yield a list containing one processing time, while a job
comprised of three processing steps would yield a list containing three processing times. An empty list
represents a failure to calculate processing times.
List of run times for the job's processing steps in the order that they were executed.
An empty list represents a failure to calculate processing times.
type: array
items:
$ref: '#/components/schemas/processing_time_in_seconds'
oneOf:
- $ref: "#/components/schemas/processing_times"
- $ref: '#/components/schemas/processing_time_in_seconds'

processing_time_in_seconds:
description: >
Run time in seconds for a particular processing step's final attempt (regardless of whether it succeeded).
Run time in seconds for a processing step's final attempt (regardless of whether it succeeded).
A value of zero indicates that there were no attempts.
type: number
minimum: 0
Expand Down

0 comments on commit 6b6da4a

Please sign in to comment.