Creating OIDC in LLNG for matrix

How can i transalte this here: synapse/openid.md at develop · matrix-org/synapse (github.com)

oidc_providers:
  - idp_id: lemonldap
    idp_name: lemonldap
    discover: true
    issuer: "https://auth.example.org/" # TO BE FILLED: replace with your domain
    client_id: "your client id" # TO BE FILLED
    client_secret: "your client secret" # TO BE FILLED
    scopes:
      - "openid"
      - "profile"
      - "email"
    user_mapping_provider:
      config:
        localpart_template: "{{ user.preferred_username }}}"
        # TO BE FILLED: If your users have names in LemonLDAP::NG and you want those in Synapse, this should be replaced with user.name|capitalize or any valid filter.
        display_name_template: "{{ user.preferred_username|capitalize }}"

How can i translate this properly into LLNG for oidc connect relay services.

i have created a new OpenID Connect Relying Parties
under scoped value content, i have created

email
openid
profile

under options basic, i created
i created a client id and client secret.

now am i supposed to mapp any properties to the scoped values
is this correct
image
is there any other thing that needs to be done.

how are these supposed to be mapped.

user_mapping_provider:
      config:
        localpart_template: "{{ user.preferred_username }}}"
        # TO BE FILLED: If your users have names in LemonLDAP::NG and you want those in Synapse, this should be replaced with user.name|capitalize or any valid filter.
        display_name_template: "{{ user.preferred_username|capitalize }}"

Since you’re asking about the Synapse docs, seems you’d be better off asking in whatever support channels they have.