Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add processStepReport class and example #313

Merged
merged 3 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions examples/processStepReport.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"name": "process step report name",
"description": "process step report description",
"fileType": "process step report file type"
}
]
22 changes: 22 additions & 0 deletions schema/processStepReport.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"id": "processStepReport.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "report of what occurred during the process step",
"example": "../examples/processStepReport.json",
"required": ["name"],
"properties": {
"name": {
"type": "string",
"description": "name of the processing report"
},
"description": {
"type": "string",
"description": "textual description of what occurred during the process step"
},
"fileType": {
"type": "string",
"description": "type of file that contains the processing report"
}
}
}