We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55648fd commit 0fba28dCopy full SHA for 0fba28d
src/main/java/edu/kit/datamanager/ro_crate/writer/ProvenanceManager.java
@@ -70,10 +70,11 @@ void addProvenanceInformation(Crate crate) {
70
71
private ContextualEntity createActionEntity(boolean isFirstWrite, String libraryId) {
72
return new ContextualEntityBuilder()
73
- .addType(isFirstWrite ? "CreateAction" : "UpdateAction")
74
- .addProperty("startTime", Instant.now().toString())
75
- .addIdProperty("agent", libraryId)
76
- .build();
+ .addType(isFirstWrite ? "CreateAction" : "UpdateAction")
+ .addIdProperty("result", "./")
+ .addProperty("startTime", Instant.now().toString())
+ .addIdProperty("agent", libraryId)
77
+ .build();
78
}
79
80
private ContextualEntity buildRoCrateJavaEntity(
0 commit comments