You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add workflow metadata to objects
* rubocop fixes
* fix rabbitmq test
* switch to a new VersionMetadata model to make associations clearer
* allow workflow metadata to be deleted by passing in an empty hash
* remove dual primary key, and use index and validation instead
* move druid validation to a validator
* store all metadata in the database as json
* remove the parsing back and forth from json
* update comments
* parse JSON in controller; version now accepts hash
* rerun rubocop todo
* add info to README
* rename VersionMetadata to VersionContext; use POST for context instead of GET params
* serialize json in table; update tests
* client response should have json still for easier parsing by client
* remove unneeded code; make tests match how client works
Copy file name to clipboardexpand all lines: README.md
+18
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,24 @@ GET /workflow_queue/all_queued
112
112
GET /workflow_queue
113
113
```
114
114
115
+
### Workflow Variables
116
+
117
+
If a workflow or workflows for a particular object require data to be persisted and available between steps, workflow variables can be set.
118
+
These are per object/version pair and thus available to any step in any workflow for a given version of an object once set.
119
+
120
+
These data are not persisted in Cocina, and are not preserved or available outside of the workflow-service, so they should only be used to persist information used during workflow processing.
121
+
122
+
To use, pass in a "context" parameter as JSON in the body of the request when creating a workflow (and set content type to application/json). The json can contain any number of key/value pairs of context:
123
+
124
+
```
125
+
POST /objects/:druid/workflows/:workflow?version=Y
126
+
```
127
+
128
+
This context will then be returned as JSON in each `process` block of the XML response containing workflow data, e.g. `GET /objects/:druid/workflows` for use in processing.
129
+
130
+
This can be used if a user selects an option in Pre-assembly or Argo that needs to be passed through the accessioning pipeline, such as if OCR or captioning is required. The value is set when creating the workflow, and then available to each robot which needs it.
0 commit comments