Excerpt |
---|
The AssignValueAction assigns a specific value to the field specified e.g. update copyright source with creators from Dublin Core. This requires the layer where the field is found to be assigned already, therefore combine with "AssignLayerAction" and/or "LayerAssignedCondition". |
...
Note |
---|
Do not use this action for tags. If you try to assign a tag with this action and the tag was not found you will get an empty value assigned which results in a metadata validation error. For tags use Assign Tagbox Items Action. |
Specific Definitions
Property | Value | |||||||||||
kind | AssignValueAction | |||||||||||
path | The path to the field which may be the LayerId or a real path e.g. for Fieldsets. Check the documentation for accessing fields for details. | |||||||||||
fieldId | The ID of the field, the value should be inserted in. | |||||||||||
value | The value for the field, provided by value or variable. Text with translations
Geo point
Tagbox value variable
Tagbox value id
| |||||||||||
replace | Indicates whether existing values should be replaced. Note: for multi fieldsets and relations, this setting controls, if the value is added to the already existing values or if the existing values shall be overwritten. |
Assign Layer with two text values
Code Block |
---|
"actions": [ { "kind": "AssignLayerActionAssignValueAction", "layerId": "BasicInformation", "defaultValues": [ { "title": { "en": "$myvariable$", "de": "$myvariable$" } }, { "description": { "en": "$myothervariable$", "de": "$myothervariable$" } } ] } ], |
...