handlers.sync_field_values

class SyncFieldValues(handlers.eventhandler.EventHandler):

Copies a value from one field to another field on the same fact sheet whenever it's updated.
Example: Copy the value of category into the field architectureFsCategory:

"fields": [
    ["category", "architectureFsCategory"]
]
name = 'Sync Fact Sheet Fields'
description = "Copies a value from one field to another field on the same fact sheet whenever it's updated."
conditions = {'event_types': ['FactSheetUpdatedEvent'], 'fs_types': ['Architecture']}
config_template = {'fields': [['category', 'architectureFsCategory']]}
def handle(self, event, fs, **kwargs):

Called automatically whenever a FactSheetUpdated event comes in via webhook.