mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 00:41:35 -05:00
The task will be picked up by the FTP app. Given the list of job ids the tasks will get all the files from s3, aggregate them then send to dvla
16 lines
399 B
Python
16 lines
399 B
Python
from app.schema_validation.definitions import uuid
|
|
|
|
letter_job_ids = {
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "list of job ids",
|
|
"type": "object",
|
|
"title": "job_ids",
|
|
"properties": {
|
|
"job_ids": {"type": "array",
|
|
"items": uuid,
|
|
"minItems": 1
|
|
},
|
|
},
|
|
"required": ["job_ids"]
|
|
}
|