Defaults in structure with multiple fields

Hi
Is it possible to set defaults on stucture with multiple fields?

I have tried this:

data:
    type: structure
    defaults:
        - name: Paul
           phone: 888888888
        - name: Rick
           phone: 999999999
     fields:
        name:
            type: text
        phone:
            type: text

But no defaults in the structure…
Thanks for advice

Should work, but there seems to be an issue with the indentation:

      data:
        label: Contacts
        type: structure
        default:
          - name: Eve
            phone: 1234567
          - name: Adam
            phone: 1234567
          - name: Merli
            phone: 1234567
          - name: Emma
            phone: 1234567
        fields:
          name:
            label: Name
            type: text
          phone:
            label: phone
            type: text

And it does work.
You were right about the indentation - that was the only issue.
It looked right on Visual Studio :-/
Thanks for pointing that out