get_job.json 574 B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json-schema.org/draft-06/schema#",
  3. "title": "Get Job Handler",
  4. "type": "object",
  5. "properties": {
  6. "pathParameters": {
  7. "description": "Path parameters for the request",
  8. "type": "object",
  9. "properties": {
  10. "job_id": {
  11. "description": "ID of the Job",
  12. "type": "string",
  13. "pattern": "^([A-Za-z0-9-])+$"
  14. }
  15. },
  16. "required": ["job_id"]
  17. }
  18. },
  19. "required": ["pathParameters"]
  20. }