Hi Aliaksandr,
As per the documentation [Inbound SAML using passport.js](https://gluu.org/docs/ce/authn-guide/inbound-saml-passport/) we configured passport-saml-config.json file. After configuration we have generated metadata for our external IdP listed in the passport-saml-config.json file once it successfully validates configuration. We can access our metadata in URL to this format: https://<hostname>/passport/auth/meta/idp/<IDP-id-from-passport-saml-config>. It can also be found under /opt/gluu/node/passport/server/idp-metadata directory within Gluu's chroot container.
If passport-saml-config.json had any errors then how the metadata for external onboarding Idp is generated? Can you please take a look at the passport-saml-config.json content below and correct us if we are missing something?
```
{"jcgluussodev": {"entryPoint": "https://sso.jumpcloud.com/saml2/SSO-jcgluussodev",
"issuer": "jcgluussodev",
"identifierFormat": "urn:oasis:names:tc:SAML:2.0:nameid-format:transient",
"authnRequestBinding": "HTTP-POST",
"additionalAuthorizeParams": "",
"skipRequestCompression": "true",
"logo_img":"https://chetu-lms.taoconnect.org/theme/taotheme/img/logo.png",
"enable":"true",
"cert":"MIIC5..........Cw=",
"reverseMapping": {
"email" : "email",
"username": "urn:oid:0.9.2342.19200300.100.1.1",
"displayName": "urn:oid:2.16.840.1.113730.3.1.241",
"id": "urn:oid:0.9.2342.19200300.100.1.1",
"name": "urn:oid:2.5.4.42",
"givenName": "urn:oid:2.5.4.42",
"familyName": "urn:oid:2.5.4.4",
"provider" :"issuer"
}
}
}
```
Thank you.