Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@ No additional endpoints. Execution reuses the same endpoints as in Part 1 with n

### Part 4: Job Management

| Method | Endpoint | Description |
|--------|-------------------------|---------------------------------------------------|
| POST | `/jobs` | Create a new job (potentially pending execution). |
| PATCH | `/jobs/{jobID}` | Update an existing job (if pending execution). |
| POST | `/jobs/{jobID}/results` | Trigger execution of an existing job. |
| GET | `/jobs/{jobID}/prov` | Returns provenance details of a completed job. |
| Method | Endpoint | Description |
|--------|----------------------------|------------------------------------------------------------------------------------------------|
| POST | `/jobs` | Create a new job (potentially pending execution). |
| PATCH | `/jobs/{jobID}` | Update an existing job (if pending execution). |
| PATCH | `/jobs/{jobID}/definition` | Retrieve the definition of a job (submitted inputs, selected outputs, header parmeters, etc.). |
| POST | `/jobs/{jobID}/results` | Trigger execution of a pending job. |
| GET | `/jobs/{jobID}/prov` | Returns provenance details of a completed job. |

## Using the standard

Expand Down