-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add link for log files and update status info.
- Loading branch information
Showing
19 changed files
with
110 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[[per_core_job-status]] | ||
[permission] | ||
==== | ||
[%metadata] | ||
identifier:: /per/core/job-status | ||
label:: /per/core/job-status | ||
[.component,class=part] | ||
-- | ||
Servers MAY, via the `request` field, include the execute request or workflow that was submitted to the server resulting in the creation of this job. The initiating request MAY be encoded inline in the job status information or MAY be referenced via a link. | ||
-- | ||
[.component,class=part] | ||
-- | ||
Servers MAY, via the `message` field, include additional human-readable context information about the job. | ||
-- | ||
==== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
type: object | ||
properties: | ||
processID: | ||
type: string | ||
inputs: | ||
additionalProperties: | ||
$ref: "input.yaml" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,48 @@ | ||
type: object | ||
required: | ||
- id | ||
- status | ||
- type | ||
properties: | ||
id: | ||
type: string | ||
processID: | ||
type: string | ||
type: | ||
type: string | ||
example: | ||
- process | ||
- wps | ||
- openeo | ||
status: | ||
$ref: "statusCode.yaml" | ||
message: | ||
type: string | ||
exception: | ||
$ref: "../common-core/exception.yaml" | ||
created: | ||
type: string | ||
format: date-time | ||
started: | ||
type: string | ||
format: date-time | ||
finished: | ||
type: string | ||
format: date-time | ||
updated: | ||
type: string | ||
format: date-time | ||
progress: | ||
type: integer | ||
minimum: 0 | ||
maximum: 100 | ||
links: | ||
type: array | ||
items: | ||
$ref: "../common-core/link.yaml" | ||
allOf: | ||
- $ref: "./descriptionType.yaml" | ||
- type: object | ||
required: | ||
- id | ||
- status | ||
- type | ||
properties: | ||
id: | ||
type: string | ||
processID: | ||
type: string | ||
type: | ||
type: string | ||
example: | ||
- process | ||
- wps | ||
- openeo | ||
request: | ||
oneOf: | ||
- type: object | ||
- $ref: "../common-core/link.yaml" | ||
status: | ||
$ref: "statusCode.yaml" | ||
message: | ||
type: string | ||
exception: | ||
$ref: "../common-core/exception.yaml" | ||
created: | ||
type: string | ||
format: date-time | ||
started: | ||
type: string | ||
format: date-time | ||
finished: | ||
type: string | ||
format: date-time | ||
updated: | ||
type: string | ||
format: date-time | ||
progress: | ||
type: integer | ||
minimum: 0 | ||
maximum: 100 | ||
links: | ||
type: array | ||
items: | ||
$ref: "../common-core/link.yaml" |