Beginner site.yml question / toggle field not showing

Hi,

like mentioned in the topic I’m new to Kirby and currently building my first project.
I want to recreate the maintenance mode option in the site.yml like mentioned in this threat
https://forum.getkirby.com/t/maintenance-mode-in-kirby/2894

I followed the instruction but plan to use a toggle instead a checkbox.
My current site.yml looks like this:

title: Site

columns:
  - width: 1/2
      sections:
        parts:
          label: Sections
          type: pages
          status: listed
          image: false

        pages:
          label: Pages
          type: pages
          status: unlisted
          image: false

        poster:
          label: Poster
          type: files

        fields:
          toggle:
            label: Go live?
              type: toggle
              text: 
                - "no"
                - "yes"

I seem to be doing something wrong in the blueprint because no matter the type of field I set there I always end up with " No field yet".

Thanks in advance!

You have to create a fields section when using fields between sections:

title: Site

columns:
  - width: 1/2
      sections:
        parts:
          label: Sections
          type: pages
          status: listed
          image: false

        pages:
          label: Pages
          type: pages
          status: unlisted
          image: false

        poster:
          label: Poster
          type: files

        fields: 
          type: fields
          fields:
            toggle:
              label: Go live?
                type: toggle
                text: 
                  - "no"
                  - "yes"

+ Need to correct indention for toggle field:

fields:
  toggle:
    label: Go live?
    type: toggle
    text: 
      - "no"
      - "yes"

@pixelijn @ahmetbora thanks a bunch. that did it. still trying to figure things out :v:t3: