123456789101112131415161718192021 |
- {
- "$schema": "http://json-schema.org/draft-06/schema#",
- "title": "Get Job Handler",
- "type": "object",
- "properties": {
- "pathParameters": {
- "description": "Path parameters for the request",
- "type": "object",
- "properties": {
- "job_id": {
- "description": "ID of the Job",
- "type": "string",
- "pattern": "^([A-Za-z0-9-])+$"
- }
- },
- "required": ["job_id"]
- }
- },
- "required": ["pathParameters"]
- }
|