mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
32 lines
800 B
YAML
32 lines
800 B
YAML
description: Expected response to a valid request
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
uid:
|
|
type: string
|
|
format: uuid
|
|
status:
|
|
type: string
|
|
# enum: ["complete", "queued"]
|
|
example: "complete"
|
|
job_type:
|
|
type: string
|
|
example: import
|
|
job_data:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
user_id:
|
|
type: string
|
|
format: uuid
|
|
manager_id:
|
|
type: string
|
|
format: uuid
|
|
errors:
|
|
type: array
|
|
items:
|
|
type: string
|
|
example: Validation error for record in job |