...
Introduced in version 23.1
Introduction
From version 23.1
you can create a batch offering rich metadata expressions where the new metadata of the item can be determined by
...
Code Block |
---|
{ "Descriptive": { "Title": "#{R('Descriptive.Title').toUpperCase()}", "Description": "#{R('Descriptive.Title') + ': ' + R('Dynamic.DescriptionCustomDescription')}", "Keywords": {"Keyword": "#{{R('Dynamic.CustomTag')}}"} }, "Dynamic": { "Orientation": "#{R('Technical.Width') > R('Technical.Height') ? 'Horizontal' : 'Vertical'}", "AdditionalInformation": "My custom field" } } |
...