openapi: 3.1.0 info: title: Robot rollout verifier Archive Job API version: 0.1.0 tags: - name: Job paths: /api/job/{job_id}: get: summary: Job Status description: 'Poll a verify job: finished items[cursor:] plus progress. The items already consumed are never re-sent — result payloads embed data-URI frames, so replaying them every poll would swamp the connection.' operationId: job_status_api_job__job_id__get parameters: - name: job_id in: path required: true schema: type: string title: Job Id - name: cursor in: query required: false schema: type: integer default: 0 title: Cursor responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' tags: - Job components: schemas: HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type input: title: Input ctx: type: object title: Context type: object required: - loc - msg - type title: ValidationError