Taglist default value

Hy,

I have a form with a taglist field

notification_types:
    type: taglist
    label: Notifications
    span: left
    mode: relation
    customTags: false
    nameFrom: full_name

I want to know how to set a default values for this field.

Thanks

you can set them like this:

notification_types:
    type: taglist
    label: Notifications
    span: left
    mode: relation
    customTags: false
    nameFrom: full_name
    default:
        0:
            property: value
            property: value

Thanks, i wil try it