diff --git a/obp-api/src/main/scala/code/api/util/Glossary.scala b/obp-api/src/main/scala/code/api/util/Glossary.scala
index 0f08f8bc07..323eb4584b 100644
--- a/obp-api/src/main/scala/code/api/util/Glossary.scala
+++ b/obp-api/src/main/scala/code/api/util/Glossary.scala
@@ -3302,6 +3302,20 @@ object Glossary extends MdcLoggable {
|Please note that FAPI 2.0 is still in draft.""".stripMargin)
+ glossaryItems += GlossaryItem(
+ title = "Available FAPI profiles",
+ description =
+ s"""The following are the FAPI profiles which are either in use by multiple implementers or which are being actively developed by the OpenID Foundation’s FAPI working group:
+ |
+ |* FAPI 1 Implementers Draft 6 (OBIE Profile)
+ |* FAPI 1 Baseline
+ |* FAPI 1 Advanced
+ |* Brazil Security Standard
+ |* FAPI 2
+ |* FAPI 2 Message Signing:
+ |""".stripMargin)
+
+
private def getContentFromMarkdownFile(path: String): String = {
val source = scala.io.Source.fromFile(path)
val lines: String = try source.mkString finally source.close()