Skip to content

Commit

Permalink
Merge pull request #18 from crs4/wfrun_container_img
Browse files Browse the repository at this point in the history
workflow-run: add terms for container images
  • Loading branch information
simleo committed Oct 17, 2023
2 parents d864f81 + fd8a50e commit f7ef4be
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
8 changes: 7 additions & 1 deletion workflow-run/context.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
"https://w3id.org/ro/crate/1.1/context",
{
"ParameterConnection": "https://w3id.org/ro/terms/workflow-run#ParameterConnection",
"ContainerImage": "https://w3id.org/ro/terms/workflow-run#ContainerImage",
"DockerImage": "https://w3id.org/ro/terms/workflow-run#DockerImage",
"SIFImage": "https://w3id.org/ro/terms/workflow-run#SIFImage",
"connection": "https://w3id.org/ro/terms/workflow-run#connection",
"sourceParameter": "https://w3id.org/ro/terms/workflow-run#sourceParameter",
"targetParameter": "https://w3id.org/ro/terms/workflow-run#targetParameter",
"md5": "https://w3id.org/ro/terms/workflow-run#md5",
"sha1": "https://w3id.org/ro/terms/workflow-run#sha1",
"sha256": "https://w3id.org/ro/terms/workflow-run#sha256",
"sha512": "https://w3id.org/ro/terms/workflow-run#sha512",
"environment": "https://w3id.org/ro/terms/workflow-run#environment"
"environment": "https://w3id.org/ro/terms/workflow-run#environment",
"registry": "https://w3id.org/ro/terms/workflow-run#registry",
"tag": "https://w3id.org/ro/terms/workflow-run#tag",
"containerImage": "https://w3id.org/ro/terms/workflow-run#containerImage"
}
]
}
14 changes: 10 additions & 4 deletions workflow-run/vocabulary.csv
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
"term","type","label","description","domain","range"
"ParameterConnection","Class","ParameterConnection","A connection between parameters of different applications",,
"ContainerImage","Class","ContainerImage","A containerization software container image",,
"DockerImage","Class","DockerImage","A Docker container image",,
"SIFImage","Class","SIFImage","A Singularity Image Format container image",,
"connection","Property","connection","A parameter connection created by this workflow","ComputationalWorkflow HowToStep","ParameterConnection"
"sourceParameter","Property","sourceParameter","The source (upstream) parameter","ParameterConnection","FormalParameter"
"targetParameter","Property","targetParameter","The target (downstream) parameter","ParameterConnection","FormalParameter"
"md5","Property","md5","md5 checksum as a hexadecimal string","File","Text"
"sha1","Property","sha1","sha1 checksum as a hexadecimal string","File","Text"
"sha256","Property","sha256","sha256 checksum as a hexadecimal string","File","Text"
"sha512","Property","sha512","sha512 checksum as a hexadecimal string","File","Text"
"md5","Property","md5","md5 checksum as a hexadecimal string","File, ContainerImage","Text"
"sha1","Property","sha1","sha1 checksum as a hexadecimal string","File, ContainerImage","Text"
"sha256","Property","sha256","sha256 checksum as a hexadecimal string","File, ContainerImage","Text"
"sha512","Property","sha512","sha512 checksum as a hexadecimal string","File, ContainerImage","Text"
"environment","Property","environment","environment variables used by the application","SoftwareApplication SoftwareSourceCode ComputationalWorkflow CreateAction","FormalParameter PropertyValue"
"registry","Property","registry","A service to register software products, such as container images","ContainerImage","Text"
"tag","Property","tag","A tag assigned to a software product, such as a container image","ContainerImage","Text"
"containerImage","Property","containerImage","A container image associated with this entity","CreateAction","ContainerImage URL"

0 comments on commit f7ef4be

Please sign in to comment.