Escape * in blueprint field value

Sorry for posting these really minor issues, but I am going crazy here:

I am trying to set a blue print field like that:

photographer:
  label: Fotograf*in
  type: text

As soon as I insert the *, the entire page does not render anymore, but gives me a JSON error. How can I escape this * character? The obvious, \* does not work unfortunately, and if I use * it renders this string literally.

Thank you!

Should work if you wrap it in quotes?

photographer:
  label: "Fotograf*in"
  type: text

*sigh*

Thanks. That was the other obvious method, that apparently I just forgot about. :wink:
Solved.