How to add the editor field to a blueprint

can someone pls explain me there to add the field tags in a blue print for the new editor?
where i have to add this lines? thx
fields:
text:
label: Editor
type: editor

That depends on your blueprint. Maybe you can post the rest of the blueprint where you want to add this field?

Hi
this is my question- where i have to add this to use the editor
even other plugins needs adding lines in blueprints -but there? there is no hint in what blueprint

The blueprint for a page where you want to use that field, e.g. in a Starterkit, you would probably use in in the note.yml blueprint instead of a standard textarea field.

Different page types use different page blueprints, so without knowing your page structure, it’s difficult to answer this question.

In that example note.yml blueprint in line #32, you could for example replace the textarea field with the editor field:

#...
columns:
  - width: 2/3
    # This columns only has a single field
    fields:
      text:
        type: editor
#...