@rockcarver/frodo-lib 0.16.2-8 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (434) hide show
  1. package/CHANGELOG.md +221 -1
  2. package/cjs/api/AgentApi.js +14 -61
  3. package/cjs/api/AgentApi.js.map +1 -1
  4. package/cjs/api/AgentApi.test.js.map +1 -1
  5. package/cjs/api/ApiTypes.js +0 -5
  6. package/cjs/api/ApiTypes.js.map +1 -1
  7. package/cjs/api/AuthenticateApi.js +9 -20
  8. package/cjs/api/AuthenticateApi.js.map +1 -1
  9. package/cjs/api/AuthenticateApi.test.js.map +1 -0
  10. package/cjs/api/BaseApi.js +82 -124
  11. package/cjs/api/BaseApi.js.map +1 -1
  12. package/cjs/api/CirclesOfTrustApi.js +8 -32
  13. package/cjs/api/CirclesOfTrustApi.js.map +1 -1
  14. package/cjs/api/IdmConfigApi.js +9 -34
  15. package/cjs/api/IdmConfigApi.js.map +1 -1
  16. package/cjs/api/LogApi.js +8 -31
  17. package/cjs/api/LogApi.js.map +1 -1
  18. package/cjs/api/ManagedObjectApi.js +34 -31
  19. package/cjs/api/ManagedObjectApi.js.map +1 -1
  20. package/cjs/api/NodeApi.js +10 -41
  21. package/cjs/api/NodeApi.js.map +1 -1
  22. package/cjs/api/NodeApi.test.js.map +1 -1
  23. package/cjs/api/OAuth2ClientApi.js +7 -26
  24. package/cjs/api/OAuth2ClientApi.js.map +1 -1
  25. package/cjs/api/OAuth2OIDCApi.js +28 -34
  26. package/cjs/api/OAuth2OIDCApi.js.map +1 -1
  27. package/cjs/api/OAuth2OIDCApi.test.js.map +1 -0
  28. package/cjs/api/OAuth2ProviderApi.js +5 -15
  29. package/cjs/api/OAuth2ProviderApi.js.map +1 -1
  30. package/cjs/api/RealmApi.js +8 -34
  31. package/cjs/api/RealmApi.js.map +1 -1
  32. package/cjs/api/Saml2Api.js +32 -118
  33. package/cjs/api/Saml2Api.js.map +1 -1
  34. package/cjs/api/ScriptApi.js +8 -30
  35. package/cjs/api/ScriptApi.js.map +1 -1
  36. package/cjs/api/SecretsApi.js +14 -64
  37. package/cjs/api/SecretsApi.js.map +1 -1
  38. package/cjs/api/SecretsApi.test.js.map +1 -1
  39. package/cjs/api/ServerInfoApi.js +6 -21
  40. package/cjs/api/ServerInfoApi.js.map +1 -1
  41. package/cjs/api/ServiceApi.js +49 -47
  42. package/cjs/api/ServiceApi.js.map +1 -1
  43. package/cjs/api/SocialIdentityProvidersApi.js +9 -36
  44. package/cjs/api/SocialIdentityProvidersApi.js.map +1 -1
  45. package/cjs/api/StartupApi.js +5 -24
  46. package/cjs/api/StartupApi.js.map +1 -1
  47. package/cjs/api/StartupApi.test.js.map +1 -1
  48. package/cjs/api/TreeApi.js +8 -30
  49. package/cjs/api/TreeApi.js.map +1 -1
  50. package/cjs/api/TreeApi.test.js.map +1 -1
  51. package/cjs/api/VariablesApi.js +9 -37
  52. package/cjs/api/VariablesApi.js.map +1 -1
  53. package/cjs/api/VariablesApi.test.js.map +1 -1
  54. package/cjs/api/utils/ApiUtils.js +47 -57
  55. package/cjs/api/utils/ApiUtils.js.map +1 -1
  56. package/cjs/api/utils/ApiUtils.test.js.map +1 -1
  57. package/cjs/api/utils/Base64.js +6 -15
  58. package/cjs/api/utils/Base64.js.map +1 -1
  59. package/cjs/ext/axios-curlirize/curlirize.js +2 -9
  60. package/cjs/ext/axios-curlirize/curlirize.js.map +1 -1
  61. package/cjs/ext/axios-curlirize/lib/CurlHelper.js +7 -22
  62. package/cjs/ext/axios-curlirize/lib/CurlHelper.js.map +1 -1
  63. package/cjs/index.js +30 -89
  64. package/cjs/index.js.map +1 -1
  65. package/cjs/ops/AdminOps.js +27 -165
  66. package/cjs/ops/AdminOps.js.map +1 -1
  67. package/cjs/ops/AgentOps.js +3 -160
  68. package/cjs/ops/AgentOps.js.map +1 -1
  69. package/cjs/ops/AgentOps.test.js.map +1 -1
  70. package/cjs/ops/AuthenticateOps.js +265 -226
  71. package/cjs/ops/AuthenticateOps.js.map +1 -1
  72. package/cjs/ops/AuthenticateOps.test.js.map +1 -1
  73. package/cjs/ops/CirclesOfTrustOps.js +13 -91
  74. package/cjs/ops/CirclesOfTrustOps.js.map +1 -1
  75. package/cjs/ops/ConnectionProfileOps.js +220 -136
  76. package/cjs/ops/ConnectionProfileOps.js.map +1 -1
  77. package/cjs/ops/ConnectionProfileOps.test.js.map +1 -1
  78. package/cjs/ops/EmailTemplateOps.js +35 -379
  79. package/cjs/ops/EmailTemplateOps.js.map +1 -1
  80. package/cjs/ops/EmailTemplateOps.test.js.map +1 -1
  81. package/cjs/ops/IdmOps.js +52 -426
  82. package/cjs/ops/IdmOps.js.map +1 -1
  83. package/cjs/ops/IdmOps.test.js.map +1 -1
  84. package/cjs/ops/IdpOps.js +11 -94
  85. package/cjs/ops/IdpOps.js.map +1 -1
  86. package/cjs/ops/IdpOps.test.js.map +1 -1
  87. package/cjs/ops/JoseOps.js +81 -0
  88. package/cjs/ops/JoseOps.js.map +1 -0
  89. package/cjs/ops/JoseOps.test.js.map +1 -0
  90. package/cjs/ops/JourneyOps.js +140 -371
  91. package/cjs/ops/JourneyOps.js.map +1 -1
  92. package/cjs/ops/JourneyOps.test.js.map +1 -1
  93. package/cjs/ops/LogOps.js +14 -47
  94. package/cjs/ops/LogOps.js.map +1 -1
  95. package/cjs/ops/ManagedObjectOps.js +4 -12
  96. package/cjs/ops/ManagedObjectOps.js.map +1 -1
  97. package/cjs/ops/NodeOps.js +9 -67
  98. package/cjs/ops/NodeOps.js.map +1 -1
  99. package/cjs/ops/OAuth2ClientOps.js +10 -40
  100. package/cjs/ops/OAuth2ClientOps.js.map +1 -1
  101. package/cjs/ops/OpsTypes.js +0 -5
  102. package/cjs/ops/OpsTypes.js.map +1 -1
  103. package/cjs/ops/OrganizationOps.js +6 -25
  104. package/cjs/ops/OrganizationOps.js.map +1 -1
  105. package/cjs/ops/RealmOps.js +0 -19
  106. package/cjs/ops/RealmOps.js.map +1 -1
  107. package/cjs/ops/Saml2Ops.js +258 -802
  108. package/cjs/ops/Saml2Ops.js.map +1 -1
  109. package/cjs/ops/Saml2Ops.test.js.map +1 -1
  110. package/cjs/ops/ScriptOps.js +28 -73
  111. package/cjs/ops/ScriptOps.js.map +1 -1
  112. package/cjs/ops/SecretsOps.js +2 -58
  113. package/cjs/ops/SecretsOps.js.map +1 -1
  114. package/cjs/ops/ServiceAccountOps.js +61 -0
  115. package/cjs/ops/ServiceAccountOps.js.map +1 -0
  116. package/cjs/ops/ServiceAccountOps.test.js.map +1 -0
  117. package/cjs/ops/ServiceOps.js +55 -101
  118. package/cjs/ops/ServiceOps.js.map +1 -1
  119. package/cjs/ops/StartupOps.js +2 -23
  120. package/cjs/ops/StartupOps.js.map +1 -1
  121. package/cjs/ops/ThemeOps.js +230 -436
  122. package/cjs/ops/ThemeOps.js.map +1 -1
  123. package/cjs/ops/ThemeOps.test.js.map +1 -0
  124. package/cjs/ops/VariablesOps.js +0 -38
  125. package/cjs/ops/VariablesOps.js.map +1 -1
  126. package/cjs/ops/utils/Console.js +29 -62
  127. package/cjs/ops/utils/Console.js.map +1 -1
  128. package/cjs/ops/utils/DataProtection.js +13 -47
  129. package/cjs/ops/utils/DataProtection.js.map +1 -1
  130. package/cjs/ops/utils/DataProtection.test.js.map +1 -1
  131. package/cjs/ops/utils/ExportImportUtils.js +36 -74
  132. package/cjs/ops/utils/ExportImportUtils.js.map +1 -1
  133. package/cjs/ops/utils/ExportImportUtils.test.js.map +1 -1
  134. package/cjs/ops/utils/OpsUtils.js +27 -43
  135. package/cjs/ops/utils/OpsUtils.js.map +1 -1
  136. package/cjs/ops/utils/OpsUtils.test.js.map +1 -1
  137. package/cjs/ops/utils/ValidationUtils.js +0 -13
  138. package/cjs/ops/utils/ValidationUtils.js.map +1 -1
  139. package/cjs/ops/utils/ValidationUtils.test.js.map +1 -1
  140. package/cjs/ops/utils/Version.js +2 -12
  141. package/cjs/ops/utils/Version.js.map +1 -1
  142. package/cjs/ops/utils/Version.test.js.map +1 -1
  143. package/cjs/ops/utils/Wordwrap.js +1 -2
  144. package/cjs/ops/utils/Wordwrap.js.map +1 -1
  145. package/cjs/ops/utils/Wordwrap.test.js.map +1 -0
  146. package/cjs/shared/State.js +239 -0
  147. package/cjs/shared/State.js.map +1 -0
  148. package/cjs/shared/State.test.js.map +1 -0
  149. package/cjs/storage/StaticStorage.js.map +1 -1
  150. package/cjs/test/mocks/AuthenticateApi/step/default_steps.json +88 -0
  151. package/cjs/test/mocks/ForgeRockApiMockEngine.js +184 -80
  152. package/cjs/test/mocks/ForgeRockApiMockEngine.js.map +1 -1
  153. package/cjs/test/mocks/IdmConfigApi/getConfigEntity/managed.json +4420 -0
  154. package/cjs/test/mocks/OAuth2OIDCApi/accessToken/body.json +6 -0
  155. package/cjs/test/mocks/OAuth2OIDCApi/accessToken/headers.json +19 -0
  156. package/cjs/test/mocks/OAuth2OIDCApi/authorize/headers.json +38 -0
  157. package/cjs/test/mocks/Saml2Api/findSaml2Providers/https:sts.windows.net711ffa9c-5972-4713-ace3-688c9732614a_stub.json +18 -0
  158. package/cjs/test/mocks/Saml2Api/findSaml2Providers/iSPAzure_stub.json +18 -0
  159. package/cjs/test/mocks/Saml2Api/getProvider/aVNQQXp1cmU.json +1 -2
  160. package/cjs/test/mocks/Saml2Api/getProvider/dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l.json +1 -3
  161. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/U1BBenVyZQ.json +147 -0
  162. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aHR0cHM6Ly9pZGMuc2NoZXViZXIuaW8vYW0vc2FtbDIvSURQQXp1cmU.json +182 -0
  163. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aHR0cHM6Ly9pZGMuc2NoZXViZXIuaW8vYW0vc2FtbDIvSURQQnJvYWRjb20.json +149 -0
  164. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aHR0cHM6Ly9pZGMuc2NoZXViZXIuaW8vYW0vc2FtbDIvSURQRmVkbGV0.json +141 -0
  165. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aVNQQXp1cmU.json +1 -2
  166. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/dm9sa2VyRGV2U1A.json +118 -0
  167. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/remote/aHR0cHM6Ly9zYW1sLm15dGVzdHJ1bi5jb20vc3A.json +66 -0
  168. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/remote/aHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzExZmZhOWMtNTk3Mi00NzEzLWFjZTMtNjg4Yzk3MzI2MTRhLw.json +35 -0
  169. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/remote/aWRw.json +83 -0
  170. package/cjs/test/mocks/Saml2Api/getProviderByLocationAndId/remote/dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l.json +1 -3
  171. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/SPAzure.xml +74 -0
  172. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fidc.scheuber.io%2Fam%2Fsaml2%2FIDPAzure.xml +78 -0
  173. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fidc.scheuber.io%2Fam%2Fsaml2%2FIDPBroadcom.xml +78 -0
  174. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fidc.scheuber.io%2Fam%2Fsaml2%2FIDPFedlet.xml +78 -0
  175. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fsaml.mytestrun.com%2Fsp.xml +13 -0
  176. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/{dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l.xml → https%3A%2F%2Fsts.windows.net%2F711ffa9c-5972-4713-ace3-688c9732614a%2F.xml} +0 -0
  177. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/{aVNQQXp1cmU.xml → iSPAzure.xml} +0 -0
  178. package/cjs/test/mocks/Saml2Api/getProviderMetadata/alpha/urn%3Afederation%3AMicrosoftOnline.xml +84 -0
  179. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/SPAzure.saml.json +243 -0
  180. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/iSPAzure.saml.json +242 -0
  181. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/idc.scheuber.ioamsaml2IDPAzure.saml.json +454 -0
  182. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/idc.scheuber.ioamsaml2IDPBroadcom.saml.json +586 -0
  183. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/idc.scheuber.ioamsaml2IDPFedlet.saml.json +241 -0
  184. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/idp.saml.json +185 -0
  185. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/saml.mytestrun.comsp.saml.json +101 -0
  186. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/sts.windows.net711ffa9c-5972-4713-ace3-688c9732614a.saml.json +113 -0
  187. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/urn:federation:MicrosoftOnline.saml.json +199 -0
  188. package/cjs/test/mocks/Saml2Ops/importSaml2Provider/volkerDevSP.saml.json +212 -0
  189. package/cjs/test/mocks/Saml2Ops/importSaml2Providers/allAlphaProviders.saml.json +2414 -0
  190. package/cjs/test/mocks/ScriptApi/getScript/5b29c5b7-b161-4a42-a41f-d6c85316b951.json +13 -0
  191. package/cjs/test/mocks/ScriptApi/getScript/85523e71-2d77-4577-b078-6f9674cc54e2.json +13 -0
  192. package/cjs/test/mocks/ScriptApi/getScript/90c4eca5-05f0-42f5-b9bf-88b693eabbbd.json +13 -0
  193. package/cjs/test/mocks/ServerInfoApi/getServerInfo/info.json +25 -0
  194. package/cjs/test/mocks/ServerInfoApi/getServerVersionInfo/version.json +8 -0
  195. package/cjs/utils/AutoSetupPolly.js +79 -0
  196. package/cjs/utils/AutoSetupPolly.js.map +1 -0
  197. package/cjs/utils/SetupJest.js +6 -0
  198. package/cjs/utils/SetupJest.js.map +1 -0
  199. package/cjs/{test/mocks → utils}/snapshotResolve.js +10 -12
  200. package/cjs/utils/snapshotResolve.js.map +1 -0
  201. package/esm/api/AgentApi.mjs +19 -21
  202. package/esm/api/AgentApi.test.mjs +6 -15
  203. package/esm/api/ApiTypes.mjs +0 -5
  204. package/esm/api/AuthenticateApi.mjs +7 -10
  205. package/esm/api/AuthenticateApi.test.mjs +39 -0
  206. package/esm/api/BaseApi.mjs +96 -81
  207. package/esm/api/CirclesOfTrustApi.mjs +9 -12
  208. package/esm/api/IdmConfigApi.mjs +11 -12
  209. package/esm/api/LogApi.mjs +6 -10
  210. package/esm/api/ManagedObjectApi.mjs +23 -8
  211. package/esm/api/NodeApi.mjs +13 -15
  212. package/esm/api/NodeApi.test.mjs +13 -17
  213. package/esm/api/OAuth2ClientApi.mjs +7 -9
  214. package/esm/api/OAuth2OIDCApi.mjs +15 -9
  215. package/esm/api/OAuth2OIDCApi.test.mjs +53 -0
  216. package/esm/api/OAuth2ProviderApi.mjs +3 -5
  217. package/esm/api/RealmApi.mjs +10 -13
  218. package/esm/api/Saml2Api.mjs +31 -61
  219. package/esm/api/ScriptApi.mjs +9 -11
  220. package/esm/api/SecretsApi.mjs +21 -24
  221. package/esm/api/SecretsApi.test.mjs +9 -31
  222. package/esm/api/ServerInfoApi.mjs +5 -9
  223. package/esm/api/ServiceApi.mjs +53 -26
  224. package/esm/api/SocialIdentityProvidersApi.mjs +11 -13
  225. package/esm/api/StartupApi.mjs +5 -10
  226. package/esm/api/StartupApi.test.mjs +4 -7
  227. package/esm/api/TreeApi.mjs +9 -11
  228. package/esm/api/TreeApi.test.mjs +24 -61
  229. package/esm/api/VariablesApi.mjs +11 -13
  230. package/esm/api/VariablesApi.test.mjs +80 -222
  231. package/esm/api/utils/ApiUtils.mjs +45 -48
  232. package/esm/api/utils/ApiUtils.test.mjs +33 -32
  233. package/esm/api/utils/Base64.mjs +6 -9
  234. package/esm/ext/axios-curlirize/curlirize.mjs +2 -7
  235. package/esm/ext/axios-curlirize/lib/CurlHelper.mjs +7 -20
  236. package/esm/index.mjs +23 -13
  237. package/esm/ops/AdminOps.mjs +33 -119
  238. package/esm/ops/AgentOps.mjs +38 -81
  239. package/esm/ops/AgentOps.test.mjs +5 -45
  240. package/esm/ops/AuthenticateOps.mjs +241 -175
  241. package/esm/ops/AuthenticateOps.test.mjs +7 -9
  242. package/esm/ops/CirclesOfTrustOps.mjs +24 -61
  243. package/esm/ops/ConnectionProfileOps.mjs +192 -82
  244. package/esm/ops/ConnectionProfileOps.test.mjs +19 -19
  245. package/esm/ops/EmailTemplateOps.mjs +18 -276
  246. package/esm/ops/EmailTemplateOps.test.mjs +19 -44
  247. package/esm/ops/IdmOps.mjs +30 -327
  248. package/esm/ops/IdmOps.test.mjs +47 -54
  249. package/esm/ops/IdpOps.mjs +21 -59
  250. package/esm/ops/IdpOps.test.mjs +5 -5
  251. package/esm/ops/JoseOps.mjs +41 -0
  252. package/esm/ops/JoseOps.test.mjs +137 -0
  253. package/esm/ops/JourneyOps.mjs +147 -290
  254. package/esm/ops/JourneyOps.test.mjs +30 -28
  255. package/esm/ops/LogOps.mjs +15 -25
  256. package/esm/ops/ManagedObjectOps.mjs +6 -6
  257. package/esm/ops/NodeOps.mjs +9 -47
  258. package/esm/ops/OAuth2ClientOps.mjs +13 -19
  259. package/esm/ops/OpsTypes.mjs +1 -3
  260. package/esm/ops/OrganizationOps.mjs +7 -14
  261. package/esm/ops/RealmOps.mjs +4 -7
  262. package/esm/ops/Saml2Ops.mjs +199 -587
  263. package/esm/ops/Saml2Ops.test.mjs +303 -84
  264. package/esm/ops/ScriptOps.mjs +31 -47
  265. package/esm/ops/SecretsOps.mjs +15 -31
  266. package/esm/ops/ServiceAccountOps.mjs +41 -0
  267. package/esm/ops/ServiceAccountOps.test.mjs +51 -0
  268. package/esm/ops/ServiceOps.mjs +66 -83
  269. package/esm/ops/StartupOps.mjs +4 -13
  270. package/esm/ops/ThemeOps.mjs +189 -298
  271. package/esm/{api/ThemeApi.test.mjs → ops/ThemeOps.test.mjs} +91 -96
  272. package/esm/ops/VariablesOps.mjs +9 -18
  273. package/esm/ops/utils/Console.mjs +28 -46
  274. package/esm/ops/utils/DataProtection.mjs +15 -28
  275. package/esm/ops/utils/DataProtection.test.mjs +8 -8
  276. package/esm/ops/utils/ExportImportUtils.mjs +34 -43
  277. package/esm/ops/utils/ExportImportUtils.test.mjs +20 -18
  278. package/esm/ops/utils/OpsUtils.mjs +27 -21
  279. package/esm/ops/utils/OpsUtils.test.mjs +155 -27
  280. package/esm/ops/utils/ValidationUtils.mjs +0 -9
  281. package/esm/ops/utils/Version.mjs +2 -3
  282. package/esm/ops/utils/Version.test.mjs +0 -2
  283. package/esm/ops/utils/Wordwrap.mjs +1 -1
  284. package/esm/ops/utils/Wordwrap.test.mjs +19 -0
  285. package/esm/shared/State.mjs +164 -0
  286. package/esm/shared/State.test.mjs +249 -0
  287. package/esm/test/mocks/AuthenticateApi/step/default_steps.json +88 -0
  288. package/esm/test/mocks/ForgeRockApiMockEngine.mjs +169 -33
  289. package/esm/test/mocks/IdmConfigApi/getConfigEntity/managed.json +4420 -0
  290. package/esm/test/mocks/OAuth2OIDCApi/accessToken/body.json +6 -0
  291. package/esm/test/mocks/OAuth2OIDCApi/accessToken/headers.json +19 -0
  292. package/esm/test/mocks/OAuth2OIDCApi/authorize/headers.json +38 -0
  293. package/esm/test/mocks/Saml2Api/findSaml2Providers/https:sts.windows.net711ffa9c-5972-4713-ace3-688c9732614a_stub.json +18 -0
  294. package/esm/test/mocks/Saml2Api/findSaml2Providers/iSPAzure_stub.json +18 -0
  295. package/esm/test/mocks/Saml2Api/getProvider/aVNQQXp1cmU.json +1 -2
  296. package/esm/test/mocks/Saml2Api/getProvider/dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l.json +1 -3
  297. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/U1BBenVyZQ.json +147 -0
  298. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aHR0cHM6Ly9pZGMuc2NoZXViZXIuaW8vYW0vc2FtbDIvSURQQXp1cmU.json +182 -0
  299. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aHR0cHM6Ly9pZGMuc2NoZXViZXIuaW8vYW0vc2FtbDIvSURQQnJvYWRjb20.json +149 -0
  300. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aHR0cHM6Ly9pZGMuc2NoZXViZXIuaW8vYW0vc2FtbDIvSURQRmVkbGV0.json +141 -0
  301. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/aVNQQXp1cmU.json +1 -2
  302. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/hosted/dm9sa2VyRGV2U1A.json +118 -0
  303. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/remote/aHR0cHM6Ly9zYW1sLm15dGVzdHJ1bi5jb20vc3A.json +66 -0
  304. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/remote/aHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzExZmZhOWMtNTk3Mi00NzEzLWFjZTMtNjg4Yzk3MzI2MTRhLw.json +35 -0
  305. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/remote/aWRw.json +83 -0
  306. package/esm/test/mocks/Saml2Api/getProviderByLocationAndId/remote/dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l.json +1 -3
  307. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/SPAzure.xml +74 -0
  308. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fidc.scheuber.io%2Fam%2Fsaml2%2FIDPAzure.xml +78 -0
  309. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fidc.scheuber.io%2Fam%2Fsaml2%2FIDPBroadcom.xml +78 -0
  310. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fidc.scheuber.io%2Fam%2Fsaml2%2FIDPFedlet.xml +78 -0
  311. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/https%3A%2F%2Fsaml.mytestrun.com%2Fsp.xml +13 -0
  312. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/{dXJuOmZlZGVyYXRpb246TWljcm9zb2Z0T25saW5l.xml → https%3A%2F%2Fsts.windows.net%2F711ffa9c-5972-4713-ace3-688c9732614a%2F.xml} +0 -0
  313. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/{aVNQQXp1cmU.xml → iSPAzure.xml} +0 -0
  314. package/esm/test/mocks/Saml2Api/getProviderMetadata/alpha/urn%3Afederation%3AMicrosoftOnline.xml +84 -0
  315. package/esm/test/mocks/Saml2Ops/importSaml2Provider/SPAzure.saml.json +243 -0
  316. package/esm/test/mocks/Saml2Ops/importSaml2Provider/iSPAzure.saml.json +242 -0
  317. package/esm/test/mocks/Saml2Ops/importSaml2Provider/idc.scheuber.ioamsaml2IDPAzure.saml.json +454 -0
  318. package/esm/test/mocks/Saml2Ops/importSaml2Provider/idc.scheuber.ioamsaml2IDPBroadcom.saml.json +586 -0
  319. package/esm/test/mocks/Saml2Ops/importSaml2Provider/idc.scheuber.ioamsaml2IDPFedlet.saml.json +241 -0
  320. package/esm/test/mocks/Saml2Ops/importSaml2Provider/idp.saml.json +185 -0
  321. package/esm/test/mocks/Saml2Ops/importSaml2Provider/saml.mytestrun.comsp.saml.json +101 -0
  322. package/esm/test/mocks/Saml2Ops/importSaml2Provider/sts.windows.net711ffa9c-5972-4713-ace3-688c9732614a.saml.json +113 -0
  323. package/esm/test/mocks/Saml2Ops/importSaml2Provider/urn:federation:MicrosoftOnline.saml.json +199 -0
  324. package/esm/test/mocks/Saml2Ops/importSaml2Provider/volkerDevSP.saml.json +212 -0
  325. package/esm/test/mocks/Saml2Ops/importSaml2Providers/allAlphaProviders.saml.json +2414 -0
  326. package/esm/test/mocks/ScriptApi/getScript/5b29c5b7-b161-4a42-a41f-d6c85316b951.json +13 -0
  327. package/esm/test/mocks/ScriptApi/getScript/85523e71-2d77-4577-b078-6f9674cc54e2.json +13 -0
  328. package/esm/test/mocks/ScriptApi/getScript/90c4eca5-05f0-42f5-b9bf-88b693eabbbd.json +13 -0
  329. package/esm/test/mocks/ServerInfoApi/getServerInfo/info.json +25 -0
  330. package/esm/test/mocks/ServerInfoApi/getServerVersionInfo/version.json +8 -0
  331. package/esm/utils/AutoSetupPolly.mjs +72 -0
  332. package/esm/utils/SetupJest.mjs +3 -0
  333. package/esm/{test/mocks → utils}/snapshotResolve.mjs +10 -12
  334. package/package.json +38 -27
  335. package/types/api/AgentApi.d.ts.map +1 -1
  336. package/types/api/ApiTypes.d.ts +19 -15
  337. package/types/api/ApiTypes.d.ts.map +1 -1
  338. package/types/api/AuthenticateApi.d.ts +1 -1
  339. package/types/api/AuthenticateApi.d.ts.map +1 -1
  340. package/types/api/BaseApi.d.ts +2 -0
  341. package/types/api/BaseApi.d.ts.map +1 -1
  342. package/types/api/CirclesOfTrustApi.d.ts.map +1 -1
  343. package/types/api/IdmConfigApi.d.ts.map +1 -1
  344. package/types/api/LogApi.d.ts.map +1 -1
  345. package/types/api/ManagedObjectApi.d.ts +9 -1
  346. package/types/api/ManagedObjectApi.d.ts.map +1 -1
  347. package/types/api/NodeApi.d.ts.map +1 -1
  348. package/types/api/OAuth2ClientApi.d.ts.map +1 -1
  349. package/types/api/OAuth2OIDCApi.d.ts +4 -2
  350. package/types/api/OAuth2OIDCApi.d.ts.map +1 -1
  351. package/types/api/OAuth2ProviderApi.d.ts.map +1 -1
  352. package/types/api/RealmApi.d.ts.map +1 -1
  353. package/types/api/Saml2Api.d.ts +7 -13
  354. package/types/api/Saml2Api.d.ts.map +1 -1
  355. package/types/api/ScriptApi.d.ts.map +1 -1
  356. package/types/api/SecretsApi.d.ts.map +1 -1
  357. package/types/api/ServerInfoApi.d.ts.map +1 -1
  358. package/types/api/ServiceApi.d.ts +14 -7
  359. package/types/api/ServiceApi.d.ts.map +1 -1
  360. package/types/api/SocialIdentityProvidersApi.d.ts.map +1 -1
  361. package/types/api/StartupApi.d.ts.map +1 -1
  362. package/types/api/TreeApi.d.ts.map +1 -1
  363. package/types/api/VariablesApi.d.ts.map +1 -1
  364. package/types/api/utils/ApiUtils.d.ts +1 -0
  365. package/types/api/utils/ApiUtils.d.ts.map +1 -1
  366. package/types/api/utils/Base64.d.ts +1 -0
  367. package/types/api/utils/Base64.d.ts.map +1 -1
  368. package/types/index.d.ts +11 -5
  369. package/types/index.d.ts.map +1 -1
  370. package/types/ops/AgentOps.d.ts +1 -1
  371. package/types/ops/AgentOps.d.ts.map +1 -1
  372. package/types/ops/AuthenticateOps.d.ts +10 -2
  373. package/types/ops/AuthenticateOps.d.ts.map +1 -1
  374. package/types/ops/ConnectionProfileOps.d.ts +49 -21
  375. package/types/ops/ConnectionProfileOps.d.ts.map +1 -1
  376. package/types/ops/EmailTemplateOps.d.ts +14 -33
  377. package/types/ops/EmailTemplateOps.d.ts.map +1 -1
  378. package/types/ops/IdmOps.d.ts +29 -37
  379. package/types/ops/IdmOps.d.ts.map +1 -1
  380. package/types/ops/JoseOps.d.ts +33 -0
  381. package/types/ops/JoseOps.d.ts.map +1 -0
  382. package/types/ops/JourneyOps.d.ts.map +1 -1
  383. package/types/ops/LogOps.d.ts.map +1 -1
  384. package/types/ops/NodeOps.d.ts.map +1 -1
  385. package/types/ops/OAuth2ClientOps.d.ts.map +1 -1
  386. package/types/ops/OpsTypes.d.ts +17 -1
  387. package/types/ops/OpsTypes.d.ts.map +1 -1
  388. package/types/ops/OrganizationOps.d.ts.map +1 -1
  389. package/types/ops/Saml2Ops.d.ts +52 -55
  390. package/types/ops/Saml2Ops.d.ts.map +1 -1
  391. package/types/ops/ScriptOps.d.ts.map +1 -1
  392. package/types/ops/ServiceAccountOps.d.ts +20 -0
  393. package/types/ops/ServiceAccountOps.d.ts.map +1 -0
  394. package/types/ops/ServiceOps.d.ts +18 -10
  395. package/types/ops/ServiceOps.d.ts.map +1 -1
  396. package/types/ops/ThemeOps.d.ts +35 -50
  397. package/types/ops/ThemeOps.d.ts.map +1 -1
  398. package/types/ops/utils/Console.d.ts +1 -1
  399. package/types/ops/utils/Console.d.ts.map +1 -1
  400. package/types/ops/utils/DataProtection.d.ts.map +1 -1
  401. package/types/ops/utils/ExportImportUtils.d.ts +5 -2
  402. package/types/ops/utils/ExportImportUtils.d.ts.map +1 -1
  403. package/types/ops/utils/OpsUtils.d.ts +6 -0
  404. package/types/ops/utils/OpsUtils.d.ts.map +1 -1
  405. package/types/ops/utils/Wordwrap.d.ts.map +1 -1
  406. package/types/shared/State.d.ts +223 -0
  407. package/types/shared/State.d.ts.map +1 -0
  408. package/types/test/mocks/ForgeRockApiMockEngine.d.ts +21 -1
  409. package/types/test/mocks/ForgeRockApiMockEngine.d.ts.map +1 -1
  410. package/types/utils/AutoSetupPolly.d.ts +1 -0
  411. package/types/utils/AutoSetupPolly.d.ts.map +1 -0
  412. package/types/utils/SetupJest.d.ts +1 -0
  413. package/types/utils/SetupJest.d.ts.map +1 -0
  414. package/types/utils/snapshotResolve.d.ts +1 -0
  415. package/types/utils/snapshotResolve.d.ts.map +1 -0
  416. package/cjs/api/EmailTemplateApi.js +0 -73
  417. package/cjs/api/EmailTemplateApi.js.map +0 -1
  418. package/cjs/api/ThemeApi.js +0 -367
  419. package/cjs/api/ThemeApi.js.map +0 -1
  420. package/cjs/api/ThemeApi.test.js.map +0 -1
  421. package/cjs/storage/SessionStorage.js +0 -91
  422. package/cjs/storage/SessionStorage.js.map +0 -1
  423. package/cjs/test/mocks/snapshotResolve.js.map +0 -1
  424. package/esm/api/EmailTemplateApi.mjs +0 -34
  425. package/esm/api/ThemeApi.mjs +0 -271
  426. package/esm/storage/SessionStorage.mjs +0 -79
  427. package/types/api/EmailTemplateApi.d.ts +0 -22
  428. package/types/api/EmailTemplateApi.d.ts.map +0 -1
  429. package/types/api/ThemeApi.d.ts +0 -56
  430. package/types/api/ThemeApi.d.ts.map +0 -1
  431. package/types/storage/SessionStorage.d.ts +0 -71
  432. package/types/storage/SessionStorage.d.ts.map +0 -1
  433. package/types/test/mocks/snapshotResolve.d.ts +0 -1
  434. package/types/test/mocks/snapshotResolve.d.ts.map +0 -1
@@ -0,0 +1,4420 @@
1
+ {
2
+ "_id": "managed",
3
+ "objects": [
4
+ {
5
+ "meta": {
6
+ "property": "_meta",
7
+ "resourceCollection": "managed/alpha_usermeta",
8
+ "trackedProperties": [
9
+ "createDate",
10
+ "lastChanged"
11
+ ]
12
+ },
13
+ "name": "alpha_user",
14
+ "notifications": {},
15
+ "schema": {
16
+ "$schema": "http://forgerock.org/json-schema#",
17
+ "description": null,
18
+ "icon": "fa-user",
19
+ "order": [
20
+ "_id",
21
+ "userName",
22
+ "password",
23
+ "givenName",
24
+ "cn",
25
+ "sn",
26
+ "mail",
27
+ "profileImage",
28
+ "description",
29
+ "accountStatus",
30
+ "telephoneNumber",
31
+ "postalAddress",
32
+ "city",
33
+ "postalCode",
34
+ "country",
35
+ "stateProvince",
36
+ "roles",
37
+ "manager",
38
+ "authzRoles",
39
+ "reports",
40
+ "effectiveRoles",
41
+ "effectiveAssignments",
42
+ "lastSync",
43
+ "kbaInfo",
44
+ "preferences",
45
+ "consentedMappings",
46
+ "ownerOfOrg",
47
+ "adminOfOrg",
48
+ "memberOfOrg",
49
+ "memberOfOrgIDs",
50
+ "frIndexedString1",
51
+ "frIndexedString2",
52
+ "frIndexedString3",
53
+ "frIndexedString4",
54
+ "frIndexedString5",
55
+ "frUnindexedString1",
56
+ "frUnindexedString2",
57
+ "frUnindexedString3",
58
+ "frUnindexedString4",
59
+ "frUnindexedString5",
60
+ "frIndexedMultivalued1",
61
+ "frIndexedMultivalued2",
62
+ "frIndexedMultivalued3",
63
+ "frIndexedMultivalued4",
64
+ "frIndexedMultivalued5",
65
+ "frUnindexedMultivalued1",
66
+ "frUnindexedMultivalued2",
67
+ "frUnindexedMultivalued3",
68
+ "frUnindexedMultivalued4",
69
+ "frUnindexedMultivalued5",
70
+ "frIndexedDate1",
71
+ "frIndexedDate2",
72
+ "frIndexedDate3",
73
+ "frIndexedDate4",
74
+ "frIndexedDate5",
75
+ "frUnindexedDate1",
76
+ "frUnindexedDate2",
77
+ "frUnindexedDate3",
78
+ "frUnindexedDate4",
79
+ "frUnindexedDate5",
80
+ "frIndexedInteger1",
81
+ "frIndexedInteger2",
82
+ "frIndexedInteger3",
83
+ "frIndexedInteger4",
84
+ "frIndexedInteger5",
85
+ "frUnindexedInteger1",
86
+ "frUnindexedInteger2",
87
+ "frUnindexedInteger3",
88
+ "frUnindexedInteger4",
89
+ "frUnindexedInteger5",
90
+ "assignedDashboard",
91
+ "aliasList",
92
+ "custom_department",
93
+ "groups",
94
+ "effectiveGroups"
95
+ ],
96
+ "properties": {
97
+ "_id": {
98
+ "description": "User ID",
99
+ "isPersonal": false,
100
+ "policies": [
101
+ {
102
+ "params": {
103
+ "forbiddenChars": [
104
+ "/"
105
+ ]
106
+ },
107
+ "policyId": "cannot-contain-characters"
108
+ }
109
+ ],
110
+ "searchable": false,
111
+ "type": "string",
112
+ "usageDescription": null,
113
+ "userEditable": false,
114
+ "viewable": false
115
+ },
116
+ "accountStatus": {
117
+ "default": "active",
118
+ "description": "Status",
119
+ "isPersonal": false,
120
+ "searchable": true,
121
+ "title": "Status",
122
+ "type": "string",
123
+ "usageDescription": null,
124
+ "userEditable": false,
125
+ "viewable": true
126
+ },
127
+ "adminOfOrg": {
128
+ "items": {
129
+ "notifySelf": false,
130
+ "properties": {
131
+ "_ref": {
132
+ "type": "string"
133
+ },
134
+ "_refProperties": {
135
+ "properties": {
136
+ "_id": {
137
+ "propName": "_id",
138
+ "required": false,
139
+ "type": "string"
140
+ }
141
+ },
142
+ "type": "object"
143
+ }
144
+ },
145
+ "resourceCollection": [
146
+ {
147
+ "label": "Organization",
148
+ "notify": true,
149
+ "path": "managed/alpha_organization",
150
+ "query": {
151
+ "fields": [
152
+ "name"
153
+ ],
154
+ "queryFilter": "true",
155
+ "sortKeys": []
156
+ }
157
+ }
158
+ ],
159
+ "reversePropertyName": "admins",
160
+ "reverseRelationship": true,
161
+ "type": "relationship",
162
+ "validate": true
163
+ },
164
+ "policies": [],
165
+ "returnByDefault": false,
166
+ "searchable": false,
167
+ "title": "Organizations I Administer",
168
+ "type": "array",
169
+ "userEditable": false,
170
+ "viewable": true
171
+ },
172
+ "aliasList": {
173
+ "description": "List of identity aliases used primarily to record social IdP subjects for this user",
174
+ "isVirtual": false,
175
+ "items": {
176
+ "title": "User Alias Names Items",
177
+ "type": "string"
178
+ },
179
+ "returnByDefault": false,
180
+ "searchable": false,
181
+ "title": "User Alias Names List",
182
+ "type": "array",
183
+ "userEditable": true,
184
+ "viewable": false
185
+ },
186
+ "assignedDashboard": {
187
+ "description": "List of items to click on for this user",
188
+ "isVirtual": false,
189
+ "items": {
190
+ "title": "Assigned Dashboard Items",
191
+ "type": "string"
192
+ },
193
+ "searchable": false,
194
+ "title": "Assigned Dashboard",
195
+ "type": "array",
196
+ "userEditable": false,
197
+ "viewable": true
198
+ },
199
+ "authzRoles": {
200
+ "description": "Authorization Roles",
201
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:authzRoles",
202
+ "isPersonal": false,
203
+ "items": {
204
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:authzRoles:items",
205
+ "properties": {
206
+ "_ref": {
207
+ "description": "References a relationship from a managed object",
208
+ "type": "string"
209
+ },
210
+ "_refProperties": {
211
+ "description": "Supports metadata within the relationship",
212
+ "properties": {
213
+ "_id": {
214
+ "description": "_refProperties object ID",
215
+ "type": "string"
216
+ }
217
+ },
218
+ "title": "Authorization Roles Items _refProperties",
219
+ "type": "object"
220
+ }
221
+ },
222
+ "resourceCollection": [
223
+ {
224
+ "conditionalAssociationField": "condition",
225
+ "label": "Internal Role",
226
+ "path": "internal/role",
227
+ "query": {
228
+ "fields": [
229
+ "name"
230
+ ],
231
+ "queryFilter": "true"
232
+ }
233
+ }
234
+ ],
235
+ "reversePropertyName": "authzMembers",
236
+ "reverseRelationship": true,
237
+ "title": "Authorization Roles Items",
238
+ "type": "relationship",
239
+ "validate": true
240
+ },
241
+ "returnByDefault": false,
242
+ "title": "Authorization Roles",
243
+ "type": "array",
244
+ "usageDescription": null,
245
+ "userEditable": false,
246
+ "viewable": true
247
+ },
248
+ "city": {
249
+ "description": "City",
250
+ "isPersonal": false,
251
+ "title": "City",
252
+ "type": "string",
253
+ "usageDescription": null,
254
+ "userEditable": true,
255
+ "viewable": true
256
+ },
257
+ "cn": {
258
+ "description": "Common Name",
259
+ "isPersonal": true,
260
+ "isVirtual": true,
261
+ "onStore": {
262
+ "source": "object.cn || (object.givenName + ' ' + object.sn)",
263
+ "type": "text/javascript"
264
+ },
265
+ "scope": "private",
266
+ "searchable": false,
267
+ "title": "Common Name",
268
+ "type": "string",
269
+ "userEditable": false,
270
+ "viewable": false
271
+ },
272
+ "consentedMappings": {
273
+ "description": "Consented Mappings",
274
+ "isPersonal": false,
275
+ "isVirtual": false,
276
+ "items": {
277
+ "items": {
278
+ "order": [
279
+ "mapping",
280
+ "consentDate"
281
+ ],
282
+ "properties": {
283
+ "consentDate": {
284
+ "description": "Consent Date",
285
+ "searchable": true,
286
+ "title": "Consent Date",
287
+ "type": "string",
288
+ "userEditable": true,
289
+ "viewable": true
290
+ },
291
+ "mapping": {
292
+ "description": "Mapping",
293
+ "searchable": true,
294
+ "title": "Mapping",
295
+ "type": "string",
296
+ "userEditable": true,
297
+ "viewable": true
298
+ }
299
+ },
300
+ "required": [
301
+ "mapping",
302
+ "consentDate"
303
+ ],
304
+ "title": "Consented Mappings Item",
305
+ "type": "object"
306
+ },
307
+ "title": "Consented Mappings Items",
308
+ "type": "array"
309
+ },
310
+ "returnByDefault": false,
311
+ "searchable": false,
312
+ "title": "Consented Mappings",
313
+ "type": "array",
314
+ "usageDescription": null,
315
+ "userEditable": true,
316
+ "viewable": false
317
+ },
318
+ "country": {
319
+ "description": "Country",
320
+ "isPersonal": false,
321
+ "title": "Country",
322
+ "type": "string",
323
+ "usageDescription": null,
324
+ "userEditable": true,
325
+ "viewable": true
326
+ },
327
+ "custom_department": {
328
+ "description": null,
329
+ "format": null,
330
+ "isVirtual": false,
331
+ "searchable": false,
332
+ "title": "Department",
333
+ "type": "string",
334
+ "userEditable": true,
335
+ "viewable": true
336
+ },
337
+ "description": {
338
+ "description": "Description",
339
+ "isPersonal": false,
340
+ "searchable": true,
341
+ "title": "Description",
342
+ "type": "string",
343
+ "usageDescription": null,
344
+ "userEditable": true,
345
+ "viewable": true
346
+ },
347
+ "effectiveAssignments": {
348
+ "description": "Effective Assignments",
349
+ "isPersonal": false,
350
+ "isVirtual": true,
351
+ "items": {
352
+ "title": "Effective Assignments Items",
353
+ "type": "object"
354
+ },
355
+ "queryConfig": {
356
+ "referencedObjectFields": [
357
+ "*"
358
+ ],
359
+ "referencedRelationshipFields": [
360
+ "roles",
361
+ "assignments"
362
+ ]
363
+ },
364
+ "returnByDefault": true,
365
+ "title": "Effective Assignments",
366
+ "type": "array",
367
+ "usageDescription": null,
368
+ "viewable": false
369
+ },
370
+ "effectiveGroups": {
371
+ "description": "Effective Groups",
372
+ "isPersonal": false,
373
+ "isVirtual": true,
374
+ "items": {
375
+ "title": "Effective Groups Items",
376
+ "type": "object"
377
+ },
378
+ "queryConfig": {
379
+ "referencedRelationshipFields": [
380
+ "groups"
381
+ ]
382
+ },
383
+ "returnByDefault": true,
384
+ "title": "Effective Groups",
385
+ "type": "array",
386
+ "usageDescription": "",
387
+ "viewable": false
388
+ },
389
+ "effectiveRoles": {
390
+ "description": "Effective Roles",
391
+ "isPersonal": false,
392
+ "isVirtual": true,
393
+ "items": {
394
+ "title": "Effective Roles Items",
395
+ "type": "object"
396
+ },
397
+ "queryConfig": {
398
+ "referencedRelationshipFields": [
399
+ "roles"
400
+ ]
401
+ },
402
+ "returnByDefault": true,
403
+ "title": "Effective Roles",
404
+ "type": "array",
405
+ "usageDescription": null,
406
+ "viewable": false
407
+ },
408
+ "frIndexedDate1": {
409
+ "description": "Generic Indexed Date 1",
410
+ "isPersonal": false,
411
+ "title": "Generic Indexed Date 1",
412
+ "type": "string",
413
+ "usageDescription": null,
414
+ "userEditable": true,
415
+ "viewable": false
416
+ },
417
+ "frIndexedDate2": {
418
+ "description": "Generic Indexed Date 2",
419
+ "isPersonal": false,
420
+ "title": "Generic Indexed Date 2",
421
+ "type": "string",
422
+ "usageDescription": null,
423
+ "userEditable": true,
424
+ "viewable": false
425
+ },
426
+ "frIndexedDate3": {
427
+ "description": "Generic Indexed Date 3",
428
+ "isPersonal": false,
429
+ "title": "Generic Indexed Date 3",
430
+ "type": "string",
431
+ "usageDescription": null,
432
+ "userEditable": true,
433
+ "viewable": false
434
+ },
435
+ "frIndexedDate4": {
436
+ "description": "Generic Indexed Date 4",
437
+ "isPersonal": false,
438
+ "title": "Generic Indexed Date 4",
439
+ "type": "string",
440
+ "usageDescription": null,
441
+ "userEditable": true,
442
+ "viewable": false
443
+ },
444
+ "frIndexedDate5": {
445
+ "description": "Generic Indexed Date 5",
446
+ "isPersonal": false,
447
+ "title": "Generic Indexed Date 5",
448
+ "type": "string",
449
+ "usageDescription": null,
450
+ "userEditable": true,
451
+ "viewable": false
452
+ },
453
+ "frIndexedInteger1": {
454
+ "description": "Generic Indexed Integer 1",
455
+ "isPersonal": false,
456
+ "title": "Generic Indexed Integer 1",
457
+ "type": "number",
458
+ "usageDescription": null,
459
+ "userEditable": true,
460
+ "viewable": false
461
+ },
462
+ "frIndexedInteger2": {
463
+ "description": "Generic Indexed Integer 2",
464
+ "isPersonal": false,
465
+ "title": "Generic Indexed Integer 2",
466
+ "type": "number",
467
+ "usageDescription": null,
468
+ "userEditable": true,
469
+ "viewable": false
470
+ },
471
+ "frIndexedInteger3": {
472
+ "description": "Generic Indexed Integer 3",
473
+ "isPersonal": false,
474
+ "title": "Generic Indexed Integer 3",
475
+ "type": "number",
476
+ "usageDescription": null,
477
+ "userEditable": true,
478
+ "viewable": false
479
+ },
480
+ "frIndexedInteger4": {
481
+ "description": "Generic Indexed Integer 4",
482
+ "isPersonal": false,
483
+ "title": "Generic Indexed Integer 4",
484
+ "type": "number",
485
+ "usageDescription": null,
486
+ "userEditable": true,
487
+ "viewable": false
488
+ },
489
+ "frIndexedInteger5": {
490
+ "description": "Generic Indexed Integer 5",
491
+ "isPersonal": false,
492
+ "title": "Generic Indexed Integer 5",
493
+ "type": "number",
494
+ "usageDescription": null,
495
+ "userEditable": true,
496
+ "viewable": false
497
+ },
498
+ "frIndexedMultivalued1": {
499
+ "description": "Generic Indexed Multivalue 1",
500
+ "isPersonal": false,
501
+ "items": {
502
+ "type": "string"
503
+ },
504
+ "title": "Generic Indexed Multivalue 1",
505
+ "type": "array",
506
+ "usageDescription": null,
507
+ "userEditable": true,
508
+ "viewable": false
509
+ },
510
+ "frIndexedMultivalued2": {
511
+ "description": "Generic Indexed Multivalue 2",
512
+ "isPersonal": false,
513
+ "items": {
514
+ "type": "string"
515
+ },
516
+ "title": "Generic Indexed Multivalue 2",
517
+ "type": "array",
518
+ "usageDescription": null,
519
+ "userEditable": true,
520
+ "viewable": false
521
+ },
522
+ "frIndexedMultivalued3": {
523
+ "description": "Generic Indexed Multivalue 3",
524
+ "isPersonal": false,
525
+ "items": {
526
+ "type": "string"
527
+ },
528
+ "title": "Generic Indexed Multivalue 3",
529
+ "type": "array",
530
+ "usageDescription": null,
531
+ "userEditable": true,
532
+ "viewable": false
533
+ },
534
+ "frIndexedMultivalued4": {
535
+ "description": "Generic Indexed Multivalue 4",
536
+ "isPersonal": false,
537
+ "items": {
538
+ "type": "string"
539
+ },
540
+ "title": "Generic Indexed Multivalue 4",
541
+ "type": "array",
542
+ "usageDescription": null,
543
+ "userEditable": true,
544
+ "viewable": false
545
+ },
546
+ "frIndexedMultivalued5": {
547
+ "description": "Generic Indexed Multivalue 5",
548
+ "isPersonal": false,
549
+ "items": {
550
+ "type": "string"
551
+ },
552
+ "title": "Generic Indexed Multivalue 5",
553
+ "type": "array",
554
+ "usageDescription": null,
555
+ "userEditable": true,
556
+ "viewable": false
557
+ },
558
+ "frIndexedString1": {
559
+ "description": "Generic Indexed String 1",
560
+ "isPersonal": false,
561
+ "title": "Generic Indexed String 1",
562
+ "type": "string",
563
+ "usageDescription": null,
564
+ "userEditable": true,
565
+ "viewable": false
566
+ },
567
+ "frIndexedString2": {
568
+ "description": "Generic Indexed String 2",
569
+ "isPersonal": false,
570
+ "title": "Generic Indexed String 2",
571
+ "type": "string",
572
+ "usageDescription": null,
573
+ "userEditable": true,
574
+ "viewable": false
575
+ },
576
+ "frIndexedString3": {
577
+ "description": "Generic Indexed String 3",
578
+ "isPersonal": false,
579
+ "title": "Generic Indexed String 3",
580
+ "type": "string",
581
+ "usageDescription": null,
582
+ "userEditable": true,
583
+ "viewable": false
584
+ },
585
+ "frIndexedString4": {
586
+ "description": "Generic Indexed String 4",
587
+ "isPersonal": false,
588
+ "title": "Generic Indexed String 4",
589
+ "type": "string",
590
+ "usageDescription": null,
591
+ "userEditable": true,
592
+ "viewable": false
593
+ },
594
+ "frIndexedString5": {
595
+ "description": "Generic Indexed String 5",
596
+ "isPersonal": false,
597
+ "title": "Generic Indexed String 5",
598
+ "type": "string",
599
+ "usageDescription": null,
600
+ "userEditable": true,
601
+ "viewable": false
602
+ },
603
+ "frUnindexedDate1": {
604
+ "description": "Generic Unindexed Date 1",
605
+ "isPersonal": false,
606
+ "title": "Generic Unindexed Date 1",
607
+ "type": "string",
608
+ "usageDescription": null,
609
+ "userEditable": true,
610
+ "viewable": false
611
+ },
612
+ "frUnindexedDate2": {
613
+ "description": "Generic Unindexed Date 2",
614
+ "isPersonal": false,
615
+ "title": "Generic Unindexed Date 2",
616
+ "type": "string",
617
+ "usageDescription": null,
618
+ "userEditable": true,
619
+ "viewable": false
620
+ },
621
+ "frUnindexedDate3": {
622
+ "description": "Generic Unindexed Date 3",
623
+ "isPersonal": false,
624
+ "title": "Generic Unindexed Date 3",
625
+ "type": "string",
626
+ "usageDescription": null,
627
+ "userEditable": true,
628
+ "viewable": false
629
+ },
630
+ "frUnindexedDate4": {
631
+ "description": "Generic Unindexed Date 4",
632
+ "isPersonal": false,
633
+ "title": "Generic Unindexed Date 4",
634
+ "type": "string",
635
+ "usageDescription": null,
636
+ "userEditable": true,
637
+ "viewable": false
638
+ },
639
+ "frUnindexedDate5": {
640
+ "description": "Generic Unindexed Date 5",
641
+ "isPersonal": false,
642
+ "title": "Generic Unindexed Date 5",
643
+ "type": "string",
644
+ "usageDescription": null,
645
+ "userEditable": true,
646
+ "viewable": false
647
+ },
648
+ "frUnindexedInteger1": {
649
+ "description": "Generic Unindexed Integer 1",
650
+ "isPersonal": false,
651
+ "title": "Generic Unindexed Integer 1",
652
+ "type": "number",
653
+ "usageDescription": null,
654
+ "userEditable": true,
655
+ "viewable": false
656
+ },
657
+ "frUnindexedInteger2": {
658
+ "description": "Generic Unindexed Integer 2",
659
+ "isPersonal": false,
660
+ "title": "Generic Unindexed Integer 2",
661
+ "type": "number",
662
+ "usageDescription": null,
663
+ "userEditable": true,
664
+ "viewable": false
665
+ },
666
+ "frUnindexedInteger3": {
667
+ "description": "Generic Unindexed Integer 3",
668
+ "isPersonal": false,
669
+ "title": "Generic Unindexed Integer 3",
670
+ "type": "number",
671
+ "usageDescription": null,
672
+ "userEditable": true,
673
+ "viewable": false
674
+ },
675
+ "frUnindexedInteger4": {
676
+ "description": "Generic Unindexed Integer 4",
677
+ "isPersonal": false,
678
+ "title": "Generic Unindexed Integer 4",
679
+ "type": "number",
680
+ "usageDescription": null,
681
+ "userEditable": true,
682
+ "viewable": false
683
+ },
684
+ "frUnindexedInteger5": {
685
+ "description": "Generic Unindexed Integer 5",
686
+ "isPersonal": false,
687
+ "title": "Generic Unindexed Integer 5",
688
+ "type": "number",
689
+ "usageDescription": null,
690
+ "userEditable": true,
691
+ "viewable": false
692
+ },
693
+ "frUnindexedMultivalued1": {
694
+ "description": "Generic Unindexed Multivalue 1",
695
+ "isPersonal": false,
696
+ "items": {
697
+ "type": "string"
698
+ },
699
+ "title": "Generic Unindexed Multivalue 1",
700
+ "type": "array",
701
+ "usageDescription": null,
702
+ "userEditable": true,
703
+ "viewable": false
704
+ },
705
+ "frUnindexedMultivalued2": {
706
+ "description": "Generic Unindexed Multivalue 2",
707
+ "isPersonal": false,
708
+ "items": {
709
+ "type": "string"
710
+ },
711
+ "title": "Generic Unindexed Multivalue 2",
712
+ "type": "array",
713
+ "usageDescription": null,
714
+ "userEditable": true,
715
+ "viewable": false
716
+ },
717
+ "frUnindexedMultivalued3": {
718
+ "description": "Generic Unindexed Multivalue 3",
719
+ "isPersonal": false,
720
+ "items": {
721
+ "type": "string"
722
+ },
723
+ "title": "Generic Unindexed Multivalue 3",
724
+ "type": "array",
725
+ "usageDescription": null,
726
+ "userEditable": true,
727
+ "viewable": false
728
+ },
729
+ "frUnindexedMultivalued4": {
730
+ "description": "Generic Unindexed Multivalue 4",
731
+ "isPersonal": false,
732
+ "items": {
733
+ "type": "string"
734
+ },
735
+ "title": "Generic Unindexed Multivalue 4",
736
+ "type": "array",
737
+ "usageDescription": null,
738
+ "userEditable": true,
739
+ "viewable": false
740
+ },
741
+ "frUnindexedMultivalued5": {
742
+ "description": "Generic Unindexed Multivalue 5",
743
+ "isPersonal": false,
744
+ "items": {
745
+ "type": "string"
746
+ },
747
+ "title": "Generic Unindexed Multivalue 5",
748
+ "type": "array",
749
+ "usageDescription": null,
750
+ "userEditable": true,
751
+ "viewable": false
752
+ },
753
+ "frUnindexedString1": {
754
+ "description": "Username",
755
+ "format": null,
756
+ "isPersonal": false,
757
+ "isVirtual": false,
758
+ "searchable": false,
759
+ "title": "Username",
760
+ "type": "string",
761
+ "usageDescription": null,
762
+ "userEditable": true,
763
+ "viewable": true
764
+ },
765
+ "frUnindexedString2": {
766
+ "description": "Generic Unindexed String 2",
767
+ "isPersonal": false,
768
+ "title": "Generic Unindexed String 2",
769
+ "type": "string",
770
+ "usageDescription": null,
771
+ "userEditable": true,
772
+ "viewable": false
773
+ },
774
+ "frUnindexedString3": {
775
+ "description": "Generic Unindexed String 3",
776
+ "isPersonal": false,
777
+ "title": "Generic Unindexed String 3",
778
+ "type": "string",
779
+ "usageDescription": null,
780
+ "userEditable": true,
781
+ "viewable": false
782
+ },
783
+ "frUnindexedString4": {
784
+ "description": "Generic Unindexed String 4",
785
+ "isPersonal": false,
786
+ "title": "Generic Unindexed String 4",
787
+ "type": "string",
788
+ "usageDescription": null,
789
+ "userEditable": true,
790
+ "viewable": false
791
+ },
792
+ "frUnindexedString5": {
793
+ "description": "Generic Unindexed String 5",
794
+ "isPersonal": false,
795
+ "title": "Generic Unindexed String 5",
796
+ "type": "string",
797
+ "usageDescription": null,
798
+ "userEditable": true,
799
+ "viewable": false
800
+ },
801
+ "givenName": {
802
+ "description": "First Name",
803
+ "isPersonal": true,
804
+ "searchable": true,
805
+ "title": "First Name",
806
+ "type": "string",
807
+ "usageDescription": null,
808
+ "userEditable": true,
809
+ "viewable": true
810
+ },
811
+ "groups": {
812
+ "description": "Groups",
813
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:groups",
814
+ "isPersonal": false,
815
+ "items": {
816
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:groups:items",
817
+ "notifySelf": true,
818
+ "properties": {
819
+ "_ref": {
820
+ "description": "References a relationship from a managed object",
821
+ "type": "string"
822
+ },
823
+ "_refProperties": {
824
+ "description": "Supports metadata within the relationship",
825
+ "properties": {
826
+ "_grantType": {
827
+ "description": "Grant Type",
828
+ "label": "Grant Type",
829
+ "type": "string"
830
+ },
831
+ "_id": {
832
+ "description": "_refProperties object ID",
833
+ "type": "string"
834
+ }
835
+ },
836
+ "title": "Groups Items _refProperties",
837
+ "type": "object"
838
+ }
839
+ },
840
+ "resourceCollection": [
841
+ {
842
+ "conditionalAssociationField": "condition",
843
+ "label": "Group",
844
+ "path": "managed/alpha_group",
845
+ "query": {
846
+ "fields": [],
847
+ "queryFilter": "true"
848
+ }
849
+ }
850
+ ],
851
+ "reversePropertyName": "members",
852
+ "reverseRelationship": true,
853
+ "title": "Groups Items",
854
+ "type": "relationship",
855
+ "validate": true
856
+ },
857
+ "relationshipGrantTemporalConstraintsEnforced": false,
858
+ "returnByDefault": false,
859
+ "title": "Groups",
860
+ "type": "array",
861
+ "usageDescription": "",
862
+ "userEditable": false,
863
+ "viewable": true
864
+ },
865
+ "kbaInfo": {
866
+ "description": "KBA Info",
867
+ "isPersonal": true,
868
+ "items": {
869
+ "order": [
870
+ "answer",
871
+ "customQuestion",
872
+ "questionId"
873
+ ],
874
+ "properties": {
875
+ "answer": {
876
+ "description": "Answer",
877
+ "type": "string"
878
+ },
879
+ "customQuestion": {
880
+ "description": "Custom question",
881
+ "type": "string"
882
+ },
883
+ "questionId": {
884
+ "description": "Question ID",
885
+ "type": "string"
886
+ }
887
+ },
888
+ "required": [],
889
+ "title": "KBA Info Items",
890
+ "type": "object"
891
+ },
892
+ "type": "array",
893
+ "usageDescription": null,
894
+ "userEditable": true,
895
+ "viewable": false
896
+ },
897
+ "lastSync": {
898
+ "description": "Last Sync timestamp",
899
+ "isPersonal": false,
900
+ "order": [
901
+ "effectiveAssignments",
902
+ "timestamp"
903
+ ],
904
+ "properties": {
905
+ "effectiveAssignments": {
906
+ "description": "Effective Assignments",
907
+ "items": {
908
+ "title": "Effective Assignments Items",
909
+ "type": "object"
910
+ },
911
+ "title": "Effective Assignments",
912
+ "type": "array"
913
+ },
914
+ "timestamp": {
915
+ "description": "Timestamp",
916
+ "type": "string"
917
+ }
918
+ },
919
+ "scope": "private",
920
+ "searchable": false,
921
+ "title": "Last Sync timestamp",
922
+ "type": "object",
923
+ "usageDescription": null,
924
+ "viewable": false
925
+ },
926
+ "mail": {
927
+ "description": "Email Address",
928
+ "isPersonal": true,
929
+ "policies": [
930
+ {
931
+ "policyId": "valid-email-address-format"
932
+ }
933
+ ],
934
+ "searchable": true,
935
+ "title": "Email Address",
936
+ "type": "string",
937
+ "usageDescription": null,
938
+ "userEditable": true,
939
+ "viewable": true
940
+ },
941
+ "manager": {
942
+ "description": "Manager",
943
+ "isPersonal": false,
944
+ "properties": {
945
+ "_ref": {
946
+ "description": "References a relationship from a managed object",
947
+ "type": "string"
948
+ },
949
+ "_refProperties": {
950
+ "description": "Supports metadata within the relationship",
951
+ "properties": {
952
+ "_id": {
953
+ "description": "_refProperties object ID",
954
+ "type": "string"
955
+ }
956
+ },
957
+ "title": "Manager _refProperties",
958
+ "type": "object"
959
+ }
960
+ },
961
+ "resourceCollection": [
962
+ {
963
+ "label": "User",
964
+ "path": "managed/alpha_user",
965
+ "query": {
966
+ "fields": [
967
+ "userName",
968
+ "givenName",
969
+ "sn"
970
+ ],
971
+ "queryFilter": "true"
972
+ }
973
+ }
974
+ ],
975
+ "reversePropertyName": "reports",
976
+ "reverseRelationship": true,
977
+ "searchable": false,
978
+ "title": "Manager",
979
+ "type": "relationship",
980
+ "usageDescription": null,
981
+ "userEditable": false,
982
+ "validate": true,
983
+ "viewable": true
984
+ },
985
+ "memberOfOrg": {
986
+ "items": {
987
+ "notifySelf": true,
988
+ "properties": {
989
+ "_ref": {
990
+ "type": "string"
991
+ },
992
+ "_refProperties": {
993
+ "properties": {
994
+ "_id": {
995
+ "propName": "_id",
996
+ "required": false,
997
+ "type": "string"
998
+ }
999
+ },
1000
+ "type": "object"
1001
+ }
1002
+ },
1003
+ "resourceCollection": [
1004
+ {
1005
+ "label": "Organization",
1006
+ "notify": false,
1007
+ "path": "managed/alpha_organization",
1008
+ "query": {
1009
+ "fields": [
1010
+ "name"
1011
+ ],
1012
+ "queryFilter": "true",
1013
+ "sortKeys": []
1014
+ }
1015
+ }
1016
+ ],
1017
+ "reversePropertyName": "members",
1018
+ "reverseRelationship": true,
1019
+ "type": "relationship",
1020
+ "validate": true
1021
+ },
1022
+ "policies": [],
1023
+ "returnByDefault": false,
1024
+ "searchable": false,
1025
+ "title": "Organizations to which I Belong",
1026
+ "type": "array",
1027
+ "userEditable": false,
1028
+ "viewable": true
1029
+ },
1030
+ "memberOfOrgIDs": {
1031
+ "isVirtual": true,
1032
+ "items": {
1033
+ "title": "org identifiers",
1034
+ "type": "string"
1035
+ },
1036
+ "queryConfig": {
1037
+ "flattenProperties": true,
1038
+ "referencedObjectFields": [
1039
+ "_id",
1040
+ "parentIDs"
1041
+ ],
1042
+ "referencedRelationshipFields": [
1043
+ "memberOfOrg"
1044
+ ]
1045
+ },
1046
+ "returnByDefault": true,
1047
+ "searchable": false,
1048
+ "title": "MemberOfOrgIDs",
1049
+ "type": "array",
1050
+ "userEditable": false,
1051
+ "viewable": false
1052
+ },
1053
+ "ownerOfOrg": {
1054
+ "items": {
1055
+ "notifySelf": false,
1056
+ "properties": {
1057
+ "_ref": {
1058
+ "type": "string"
1059
+ },
1060
+ "_refProperties": {
1061
+ "properties": {
1062
+ "_id": {
1063
+ "propName": "_id",
1064
+ "required": false,
1065
+ "type": "string"
1066
+ }
1067
+ },
1068
+ "type": "object"
1069
+ }
1070
+ },
1071
+ "resourceCollection": [
1072
+ {
1073
+ "label": "Organization",
1074
+ "notify": true,
1075
+ "path": "managed/alpha_organization",
1076
+ "query": {
1077
+ "fields": [
1078
+ "name"
1079
+ ],
1080
+ "queryFilter": "true",
1081
+ "sortKeys": []
1082
+ }
1083
+ }
1084
+ ],
1085
+ "reversePropertyName": "owners",
1086
+ "reverseRelationship": true,
1087
+ "type": "relationship",
1088
+ "validate": true
1089
+ },
1090
+ "policies": [],
1091
+ "returnByDefault": false,
1092
+ "searchable": false,
1093
+ "title": "Organizations I Own",
1094
+ "type": "array",
1095
+ "userEditable": false,
1096
+ "viewable": true
1097
+ },
1098
+ "password": {
1099
+ "description": "Password",
1100
+ "isPersonal": false,
1101
+ "isProtected": true,
1102
+ "scope": "private",
1103
+ "searchable": false,
1104
+ "title": "Password",
1105
+ "type": "string",
1106
+ "usageDescription": null,
1107
+ "userEditable": true,
1108
+ "viewable": false
1109
+ },
1110
+ "postalAddress": {
1111
+ "description": "Address 1",
1112
+ "isPersonal": true,
1113
+ "title": "Address 1",
1114
+ "type": "string",
1115
+ "usageDescription": null,
1116
+ "userEditable": true,
1117
+ "viewable": true
1118
+ },
1119
+ "postalCode": {
1120
+ "description": "Postal Code",
1121
+ "isPersonal": false,
1122
+ "title": "Postal Code",
1123
+ "type": "string",
1124
+ "usageDescription": null,
1125
+ "userEditable": true,
1126
+ "viewable": true
1127
+ },
1128
+ "preferences": {
1129
+ "description": "Preferences",
1130
+ "isPersonal": false,
1131
+ "order": [
1132
+ "updates",
1133
+ "marketing"
1134
+ ],
1135
+ "properties": {
1136
+ "marketing": {
1137
+ "description": "Send me special offers and services",
1138
+ "type": "boolean"
1139
+ },
1140
+ "updates": {
1141
+ "description": "Send me news and updates",
1142
+ "type": "boolean"
1143
+ }
1144
+ },
1145
+ "searchable": false,
1146
+ "title": "Preferences",
1147
+ "type": "object",
1148
+ "usageDescription": null,
1149
+ "userEditable": true,
1150
+ "viewable": true
1151
+ },
1152
+ "profileImage": {
1153
+ "description": "Profile Image",
1154
+ "isPersonal": true,
1155
+ "searchable": true,
1156
+ "title": "Profile Image",
1157
+ "type": "string",
1158
+ "usageDescription": null,
1159
+ "userEditable": true,
1160
+ "viewable": false
1161
+ },
1162
+ "reports": {
1163
+ "description": "Direct Reports",
1164
+ "isPersonal": false,
1165
+ "items": {
1166
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:reports:items",
1167
+ "properties": {
1168
+ "_ref": {
1169
+ "description": "References a relationship from a managed object",
1170
+ "type": "string"
1171
+ },
1172
+ "_refProperties": {
1173
+ "description": "Supports metadata within the relationship",
1174
+ "properties": {
1175
+ "_id": {
1176
+ "description": "_refProperties object ID",
1177
+ "type": "string"
1178
+ }
1179
+ },
1180
+ "title": "Direct Reports Items _refProperties",
1181
+ "type": "object"
1182
+ }
1183
+ },
1184
+ "resourceCollection": [
1185
+ {
1186
+ "label": "User",
1187
+ "path": "managed/alpha_user",
1188
+ "query": {
1189
+ "fields": [
1190
+ "userName",
1191
+ "givenName",
1192
+ "sn"
1193
+ ],
1194
+ "queryFilter": "true"
1195
+ }
1196
+ }
1197
+ ],
1198
+ "reversePropertyName": "manager",
1199
+ "reverseRelationship": true,
1200
+ "title": "Direct Reports Items",
1201
+ "type": "relationship",
1202
+ "validate": true
1203
+ },
1204
+ "returnByDefault": false,
1205
+ "title": "Direct Reports",
1206
+ "type": "array",
1207
+ "usageDescription": null,
1208
+ "userEditable": false,
1209
+ "viewable": true
1210
+ },
1211
+ "roles": {
1212
+ "description": "Provisioning Roles",
1213
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:roles",
1214
+ "isPersonal": false,
1215
+ "items": {
1216
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:roles:items",
1217
+ "notifySelf": true,
1218
+ "properties": {
1219
+ "_ref": {
1220
+ "description": "References a relationship from a managed object",
1221
+ "type": "string"
1222
+ },
1223
+ "_refProperties": {
1224
+ "description": "Supports metadata within the relationship",
1225
+ "properties": {
1226
+ "_grantType": {
1227
+ "description": "Grant Type",
1228
+ "label": "Grant Type",
1229
+ "type": "string"
1230
+ },
1231
+ "_id": {
1232
+ "description": "_refProperties object ID",
1233
+ "type": "string"
1234
+ }
1235
+ },
1236
+ "title": "Provisioning Roles Items _refProperties",
1237
+ "type": "object"
1238
+ }
1239
+ },
1240
+ "resourceCollection": [
1241
+ {
1242
+ "conditionalAssociationField": "condition",
1243
+ "label": "Role",
1244
+ "path": "managed/alpha_role",
1245
+ "query": {
1246
+ "fields": [
1247
+ "name"
1248
+ ],
1249
+ "queryFilter": "true"
1250
+ }
1251
+ }
1252
+ ],
1253
+ "reversePropertyName": "members",
1254
+ "reverseRelationship": true,
1255
+ "title": "Provisioning Roles Items",
1256
+ "type": "relationship",
1257
+ "validate": true
1258
+ },
1259
+ "relationshipGrantTemporalConstraintsEnforced": true,
1260
+ "returnByDefault": false,
1261
+ "title": "Provisioning Roles",
1262
+ "type": "array",
1263
+ "usageDescription": null,
1264
+ "userEditable": false,
1265
+ "viewable": true
1266
+ },
1267
+ "sn": {
1268
+ "description": "Last Name",
1269
+ "isPersonal": true,
1270
+ "searchable": true,
1271
+ "title": "Last Name",
1272
+ "type": "string",
1273
+ "usageDescription": null,
1274
+ "userEditable": true,
1275
+ "viewable": true
1276
+ },
1277
+ "stateProvince": {
1278
+ "description": "State/Province",
1279
+ "isPersonal": false,
1280
+ "title": "State/Province",
1281
+ "type": "string",
1282
+ "usageDescription": null,
1283
+ "userEditable": true,
1284
+ "viewable": true
1285
+ },
1286
+ "telephoneNumber": {
1287
+ "description": "Telephone Number",
1288
+ "isPersonal": true,
1289
+ "pattern": "^\\+?([0-9\\- \\(\\)])*$",
1290
+ "title": "Telephone Number",
1291
+ "type": "string",
1292
+ "usageDescription": null,
1293
+ "userEditable": true,
1294
+ "viewable": true
1295
+ },
1296
+ "userName": {
1297
+ "description": "Username",
1298
+ "isPersonal": true,
1299
+ "minLength": 1,
1300
+ "policies": [
1301
+ {
1302
+ "policyId": "valid-username"
1303
+ },
1304
+ {
1305
+ "params": {
1306
+ "forbiddenChars": [
1307
+ "/"
1308
+ ]
1309
+ },
1310
+ "policyId": "cannot-contain-characters"
1311
+ },
1312
+ {
1313
+ "params": {
1314
+ "minLength": 1
1315
+ },
1316
+ "policyId": "minimum-length"
1317
+ },
1318
+ {
1319
+ "params": {
1320
+ "maxLength": 255
1321
+ },
1322
+ "policyId": "maximum-length"
1323
+ }
1324
+ ],
1325
+ "searchable": true,
1326
+ "title": "Username",
1327
+ "type": "string",
1328
+ "usageDescription": null,
1329
+ "userEditable": true,
1330
+ "viewable": true
1331
+ }
1332
+ },
1333
+ "required": [
1334
+ "userName",
1335
+ "givenName",
1336
+ "sn",
1337
+ "mail"
1338
+ ],
1339
+ "title": "Alpha realm - User",
1340
+ "type": "object"
1341
+ }
1342
+ },
1343
+ {
1344
+ "meta": {
1345
+ "property": "_meta",
1346
+ "resourceCollection": "managed/bravo_usermeta",
1347
+ "trackedProperties": [
1348
+ "createDate",
1349
+ "lastChanged"
1350
+ ]
1351
+ },
1352
+ "name": "bravo_user",
1353
+ "notifications": {},
1354
+ "schema": {
1355
+ "$schema": "http://json-schema.org/draft-03/schema",
1356
+ "icon": "fa-user",
1357
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User",
1358
+ "mat-icon": "people",
1359
+ "order": [
1360
+ "_id",
1361
+ "userName",
1362
+ "password",
1363
+ "givenName",
1364
+ "cn",
1365
+ "sn",
1366
+ "mail",
1367
+ "profileImage",
1368
+ "description",
1369
+ "accountStatus",
1370
+ "telephoneNumber",
1371
+ "postalAddress",
1372
+ "city",
1373
+ "postalCode",
1374
+ "country",
1375
+ "stateProvince",
1376
+ "roles",
1377
+ "manager",
1378
+ "authzRoles",
1379
+ "reports",
1380
+ "effectiveRoles",
1381
+ "effectiveAssignments",
1382
+ "lastSync",
1383
+ "kbaInfo",
1384
+ "preferences",
1385
+ "consentedMappings",
1386
+ "ownerOfOrg",
1387
+ "adminOfOrg",
1388
+ "memberOfOrg",
1389
+ "memberOfOrgIDs",
1390
+ "frIndexedString1",
1391
+ "frIndexedString2",
1392
+ "frIndexedString3",
1393
+ "frIndexedString4",
1394
+ "frIndexedString5",
1395
+ "frUnindexedString1",
1396
+ "frUnindexedString2",
1397
+ "frUnindexedString3",
1398
+ "frUnindexedString4",
1399
+ "frUnindexedString5",
1400
+ "frIndexedMultivalued1",
1401
+ "frIndexedMultivalued2",
1402
+ "frIndexedMultivalued3",
1403
+ "frIndexedMultivalued4",
1404
+ "frIndexedMultivalued5",
1405
+ "frUnindexedMultivalued1",
1406
+ "frUnindexedMultivalued2",
1407
+ "frUnindexedMultivalued3",
1408
+ "frUnindexedMultivalued4",
1409
+ "frUnindexedMultivalued5",
1410
+ "frIndexedDate1",
1411
+ "frIndexedDate2",
1412
+ "frIndexedDate3",
1413
+ "frIndexedDate4",
1414
+ "frIndexedDate5",
1415
+ "frUnindexedDate1",
1416
+ "frUnindexedDate2",
1417
+ "frUnindexedDate3",
1418
+ "frUnindexedDate4",
1419
+ "frUnindexedDate5",
1420
+ "frIndexedInteger1",
1421
+ "frIndexedInteger2",
1422
+ "frIndexedInteger3",
1423
+ "frIndexedInteger4",
1424
+ "frIndexedInteger5",
1425
+ "frUnindexedInteger1",
1426
+ "frUnindexedInteger2",
1427
+ "frUnindexedInteger3",
1428
+ "frUnindexedInteger4",
1429
+ "frUnindexedInteger5",
1430
+ "assignedDashboard",
1431
+ "groups",
1432
+ "effectiveGroups"
1433
+ ],
1434
+ "properties": {
1435
+ "_id": {
1436
+ "description": "User ID",
1437
+ "isPersonal": false,
1438
+ "policies": [
1439
+ {
1440
+ "params": {
1441
+ "forbiddenChars": [
1442
+ "/"
1443
+ ]
1444
+ },
1445
+ "policyId": "cannot-contain-characters"
1446
+ }
1447
+ ],
1448
+ "searchable": false,
1449
+ "type": "string",
1450
+ "usageDescription": "",
1451
+ "userEditable": false,
1452
+ "viewable": false
1453
+ },
1454
+ "accountStatus": {
1455
+ "default": "active",
1456
+ "description": "Status",
1457
+ "isPersonal": false,
1458
+ "searchable": true,
1459
+ "title": "Status",
1460
+ "type": "string",
1461
+ "usageDescription": "",
1462
+ "userEditable": false,
1463
+ "viewable": true
1464
+ },
1465
+ "adminOfOrg": {
1466
+ "items": {
1467
+ "notifySelf": false,
1468
+ "properties": {
1469
+ "_ref": {
1470
+ "type": "string"
1471
+ },
1472
+ "_refProperties": {
1473
+ "properties": {
1474
+ "_id": {
1475
+ "propName": "_id",
1476
+ "required": false,
1477
+ "type": "string"
1478
+ }
1479
+ },
1480
+ "type": "object"
1481
+ }
1482
+ },
1483
+ "resourceCollection": [
1484
+ {
1485
+ "label": "Organization",
1486
+ "notify": true,
1487
+ "path": "managed/bravo_organization",
1488
+ "query": {
1489
+ "fields": [
1490
+ "name"
1491
+ ],
1492
+ "queryFilter": "true",
1493
+ "sortKeys": []
1494
+ }
1495
+ }
1496
+ ],
1497
+ "reversePropertyName": "admins",
1498
+ "reverseRelationship": true,
1499
+ "type": "relationship",
1500
+ "validate": true
1501
+ },
1502
+ "policies": [],
1503
+ "returnByDefault": false,
1504
+ "searchable": false,
1505
+ "title": "Organizations I Administer",
1506
+ "type": "array",
1507
+ "userEditable": false,
1508
+ "viewable": true
1509
+ },
1510
+ "aliasList": {
1511
+ "description": "List of identity aliases used primarily to record social IdP subjects for this user",
1512
+ "isVirtual": false,
1513
+ "items": {
1514
+ "title": "User Alias Names Items",
1515
+ "type": "string"
1516
+ },
1517
+ "returnByDefault": false,
1518
+ "searchable": false,
1519
+ "title": "User Alias Names List",
1520
+ "type": "array",
1521
+ "userEditable": true,
1522
+ "viewable": false
1523
+ },
1524
+ "assignedDashboard": {
1525
+ "description": "List of items to click on for this user",
1526
+ "isVirtual": false,
1527
+ "items": {
1528
+ "title": "Assigned Dashboard Items",
1529
+ "type": "string"
1530
+ },
1531
+ "searchable": false,
1532
+ "title": "Assigned Dashboard",
1533
+ "type": "array",
1534
+ "userEditable": false,
1535
+ "viewable": true
1536
+ },
1537
+ "authzRoles": {
1538
+ "description": "Authorization Roles",
1539
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:authzRoles",
1540
+ "isPersonal": false,
1541
+ "items": {
1542
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:authzRoles:items",
1543
+ "properties": {
1544
+ "_ref": {
1545
+ "description": "References a relationship from a managed object",
1546
+ "type": "string"
1547
+ },
1548
+ "_refProperties": {
1549
+ "description": "Supports metadata within the relationship",
1550
+ "properties": {
1551
+ "_id": {
1552
+ "description": "_refProperties object ID",
1553
+ "type": "string"
1554
+ }
1555
+ },
1556
+ "title": "Authorization Roles Items _refProperties",
1557
+ "type": "object"
1558
+ }
1559
+ },
1560
+ "resourceCollection": [
1561
+ {
1562
+ "conditionalAssociationField": "condition",
1563
+ "label": "Internal Role",
1564
+ "path": "internal/role",
1565
+ "query": {
1566
+ "fields": [
1567
+ "name"
1568
+ ],
1569
+ "queryFilter": "true"
1570
+ }
1571
+ }
1572
+ ],
1573
+ "reversePropertyName": "authzMembers",
1574
+ "reverseRelationship": true,
1575
+ "title": "Authorization Roles Items",
1576
+ "type": "relationship",
1577
+ "validate": true
1578
+ },
1579
+ "returnByDefault": false,
1580
+ "title": "Authorization Roles",
1581
+ "type": "array",
1582
+ "usageDescription": "",
1583
+ "userEditable": false,
1584
+ "viewable": true
1585
+ },
1586
+ "city": {
1587
+ "description": "City",
1588
+ "isPersonal": false,
1589
+ "title": "City",
1590
+ "type": "string",
1591
+ "usageDescription": "",
1592
+ "userEditable": true,
1593
+ "viewable": true
1594
+ },
1595
+ "cn": {
1596
+ "description": "Common Name",
1597
+ "isPersonal": true,
1598
+ "isVirtual": true,
1599
+ "onStore": {
1600
+ "source": "object.cn || (object.givenName + ' ' + object.sn)",
1601
+ "type": "text/javascript"
1602
+ },
1603
+ "scope": "private",
1604
+ "searchable": false,
1605
+ "title": "Common Name",
1606
+ "type": "string",
1607
+ "userEditable": false,
1608
+ "viewable": false
1609
+ },
1610
+ "consentedMappings": {
1611
+ "description": "Consented Mappings",
1612
+ "isPersonal": false,
1613
+ "isVirtual": false,
1614
+ "items": {
1615
+ "items": {
1616
+ "order": [
1617
+ "mapping",
1618
+ "consentDate"
1619
+ ],
1620
+ "properties": {
1621
+ "consentDate": {
1622
+ "description": "Consent Date",
1623
+ "searchable": true,
1624
+ "title": "Consent Date",
1625
+ "type": "string",
1626
+ "userEditable": true,
1627
+ "viewable": true
1628
+ },
1629
+ "mapping": {
1630
+ "description": "Mapping",
1631
+ "searchable": true,
1632
+ "title": "Mapping",
1633
+ "type": "string",
1634
+ "userEditable": true,
1635
+ "viewable": true
1636
+ }
1637
+ },
1638
+ "required": [
1639
+ "mapping",
1640
+ "consentDate"
1641
+ ],
1642
+ "title": "Consented Mappings Item",
1643
+ "type": "object"
1644
+ },
1645
+ "title": "Consented Mappings Items",
1646
+ "type": "array"
1647
+ },
1648
+ "returnByDefault": false,
1649
+ "searchable": false,
1650
+ "title": "Consented Mappings",
1651
+ "type": "array",
1652
+ "usageDescription": "",
1653
+ "userEditable": true,
1654
+ "viewable": false
1655
+ },
1656
+ "country": {
1657
+ "description": "Country",
1658
+ "isPersonal": false,
1659
+ "title": "Country",
1660
+ "type": "string",
1661
+ "usageDescription": "",
1662
+ "userEditable": true,
1663
+ "viewable": true
1664
+ },
1665
+ "description": {
1666
+ "description": "Description",
1667
+ "isPersonal": false,
1668
+ "searchable": true,
1669
+ "title": "Description",
1670
+ "type": "string",
1671
+ "usageDescription": "",
1672
+ "userEditable": true,
1673
+ "viewable": true
1674
+ },
1675
+ "effectiveAssignments": {
1676
+ "description": "Effective Assignments",
1677
+ "isPersonal": false,
1678
+ "isVirtual": true,
1679
+ "items": {
1680
+ "title": "Effective Assignments Items",
1681
+ "type": "object"
1682
+ },
1683
+ "queryConfig": {
1684
+ "referencedObjectFields": [
1685
+ "*"
1686
+ ],
1687
+ "referencedRelationshipFields": [
1688
+ "roles",
1689
+ "assignments"
1690
+ ]
1691
+ },
1692
+ "returnByDefault": true,
1693
+ "title": "Effective Assignments",
1694
+ "type": "array",
1695
+ "usageDescription": "",
1696
+ "viewable": false
1697
+ },
1698
+ "effectiveGroups": {
1699
+ "description": "Effective Groups",
1700
+ "isPersonal": false,
1701
+ "isVirtual": true,
1702
+ "items": {
1703
+ "title": "Effective Groups Items",
1704
+ "type": "object"
1705
+ },
1706
+ "queryConfig": {
1707
+ "referencedRelationshipFields": [
1708
+ "groups"
1709
+ ]
1710
+ },
1711
+ "returnByDefault": true,
1712
+ "title": "Effective Groups",
1713
+ "type": "array",
1714
+ "usageDescription": "",
1715
+ "viewable": false
1716
+ },
1717
+ "effectiveRoles": {
1718
+ "description": "Effective Roles",
1719
+ "isPersonal": false,
1720
+ "isVirtual": true,
1721
+ "items": {
1722
+ "title": "Effective Roles Items",
1723
+ "type": "object"
1724
+ },
1725
+ "queryConfig": {
1726
+ "referencedRelationshipFields": [
1727
+ "roles"
1728
+ ]
1729
+ },
1730
+ "returnByDefault": true,
1731
+ "title": "Effective Roles",
1732
+ "type": "array",
1733
+ "usageDescription": "",
1734
+ "viewable": false
1735
+ },
1736
+ "frIndexedDate1": {
1737
+ "description": "Generic Indexed Date 1",
1738
+ "isPersonal": false,
1739
+ "title": "Generic Indexed Date 1",
1740
+ "type": "string",
1741
+ "usageDescription": "",
1742
+ "userEditable": true,
1743
+ "viewable": true
1744
+ },
1745
+ "frIndexedDate2": {
1746
+ "description": "Generic Indexed Date 2",
1747
+ "isPersonal": false,
1748
+ "title": "Generic Indexed Date 2",
1749
+ "type": "string",
1750
+ "usageDescription": "",
1751
+ "userEditable": true,
1752
+ "viewable": true
1753
+ },
1754
+ "frIndexedDate3": {
1755
+ "description": "Generic Indexed Date 3",
1756
+ "isPersonal": false,
1757
+ "title": "Generic Indexed Date 3",
1758
+ "type": "string",
1759
+ "usageDescription": "",
1760
+ "userEditable": true,
1761
+ "viewable": true
1762
+ },
1763
+ "frIndexedDate4": {
1764
+ "description": "Generic Indexed Date 4",
1765
+ "isPersonal": false,
1766
+ "title": "Generic Indexed Date 4",
1767
+ "type": "string",
1768
+ "usageDescription": "",
1769
+ "userEditable": true,
1770
+ "viewable": true
1771
+ },
1772
+ "frIndexedDate5": {
1773
+ "description": "Generic Indexed Date 5",
1774
+ "isPersonal": false,
1775
+ "title": "Generic Indexed Date 5",
1776
+ "type": "string",
1777
+ "usageDescription": "",
1778
+ "userEditable": true,
1779
+ "viewable": true
1780
+ },
1781
+ "frIndexedInteger1": {
1782
+ "description": "Generic Indexed Integer 1",
1783
+ "isPersonal": false,
1784
+ "title": "Generic Indexed Integer 1",
1785
+ "type": "number",
1786
+ "usageDescription": "",
1787
+ "userEditable": true,
1788
+ "viewable": true
1789
+ },
1790
+ "frIndexedInteger2": {
1791
+ "description": "Generic Indexed Integer 2",
1792
+ "isPersonal": false,
1793
+ "title": "Generic Indexed Integer 2",
1794
+ "type": "number",
1795
+ "usageDescription": "",
1796
+ "userEditable": true,
1797
+ "viewable": true
1798
+ },
1799
+ "frIndexedInteger3": {
1800
+ "description": "Generic Indexed Integer 3",
1801
+ "isPersonal": false,
1802
+ "title": "Generic Indexed Integer 3",
1803
+ "type": "number",
1804
+ "usageDescription": "",
1805
+ "userEditable": true,
1806
+ "viewable": true
1807
+ },
1808
+ "frIndexedInteger4": {
1809
+ "description": "Generic Indexed Integer 4",
1810
+ "isPersonal": false,
1811
+ "title": "Generic Indexed Integer 4",
1812
+ "type": "number",
1813
+ "usageDescription": "",
1814
+ "userEditable": true,
1815
+ "viewable": true
1816
+ },
1817
+ "frIndexedInteger5": {
1818
+ "description": "Generic Indexed Integer 5",
1819
+ "isPersonal": false,
1820
+ "title": "Generic Indexed Integer 5",
1821
+ "type": "number",
1822
+ "usageDescription": "",
1823
+ "userEditable": true,
1824
+ "viewable": true
1825
+ },
1826
+ "frIndexedMultivalued1": {
1827
+ "description": "Generic Indexed Multivalue 1",
1828
+ "isPersonal": false,
1829
+ "items": {
1830
+ "type": "string"
1831
+ },
1832
+ "title": "Generic Indexed Multivalue 1",
1833
+ "type": "array",
1834
+ "usageDescription": "",
1835
+ "userEditable": true,
1836
+ "viewable": true
1837
+ },
1838
+ "frIndexedMultivalued2": {
1839
+ "description": "Generic Indexed Multivalue 2",
1840
+ "isPersonal": false,
1841
+ "items": {
1842
+ "type": "string"
1843
+ },
1844
+ "title": "Generic Indexed Multivalue 2",
1845
+ "type": "array",
1846
+ "usageDescription": "",
1847
+ "userEditable": true,
1848
+ "viewable": true
1849
+ },
1850
+ "frIndexedMultivalued3": {
1851
+ "description": "Generic Indexed Multivalue 3",
1852
+ "isPersonal": false,
1853
+ "items": {
1854
+ "type": "string"
1855
+ },
1856
+ "title": "Generic Indexed Multivalue 3",
1857
+ "type": "array",
1858
+ "usageDescription": "",
1859
+ "userEditable": true,
1860
+ "viewable": true
1861
+ },
1862
+ "frIndexedMultivalued4": {
1863
+ "description": "Generic Indexed Multivalue 4",
1864
+ "isPersonal": false,
1865
+ "items": {
1866
+ "type": "string"
1867
+ },
1868
+ "title": "Generic Indexed Multivalue 4",
1869
+ "type": "array",
1870
+ "usageDescription": "",
1871
+ "userEditable": true,
1872
+ "viewable": true
1873
+ },
1874
+ "frIndexedMultivalued5": {
1875
+ "description": "Generic Indexed Multivalue 5",
1876
+ "isPersonal": false,
1877
+ "items": {
1878
+ "type": "string"
1879
+ },
1880
+ "title": "Generic Indexed Multivalue 5",
1881
+ "type": "array",
1882
+ "usageDescription": "",
1883
+ "userEditable": true,
1884
+ "viewable": true
1885
+ },
1886
+ "frIndexedString1": {
1887
+ "description": "Generic Indexed String 1",
1888
+ "isPersonal": false,
1889
+ "title": "Generic Indexed String 1",
1890
+ "type": "string",
1891
+ "usageDescription": "",
1892
+ "userEditable": true,
1893
+ "viewable": true
1894
+ },
1895
+ "frIndexedString2": {
1896
+ "description": "Generic Indexed String 2",
1897
+ "isPersonal": false,
1898
+ "title": "Generic Indexed String 2",
1899
+ "type": "string",
1900
+ "usageDescription": "",
1901
+ "userEditable": true,
1902
+ "viewable": true
1903
+ },
1904
+ "frIndexedString3": {
1905
+ "description": "Generic Indexed String 3",
1906
+ "isPersonal": false,
1907
+ "title": "Generic Indexed String 3",
1908
+ "type": "string",
1909
+ "usageDescription": "",
1910
+ "userEditable": true,
1911
+ "viewable": true
1912
+ },
1913
+ "frIndexedString4": {
1914
+ "description": "Generic Indexed String 4",
1915
+ "isPersonal": false,
1916
+ "title": "Generic Indexed String 4",
1917
+ "type": "string",
1918
+ "usageDescription": "",
1919
+ "userEditable": true,
1920
+ "viewable": true
1921
+ },
1922
+ "frIndexedString5": {
1923
+ "description": "Generic Indexed String 5",
1924
+ "isPersonal": false,
1925
+ "title": "Generic Indexed String 5",
1926
+ "type": "string",
1927
+ "usageDescription": "",
1928
+ "userEditable": true,
1929
+ "viewable": true
1930
+ },
1931
+ "frUnindexedDate1": {
1932
+ "description": "Generic Unindexed Date 1",
1933
+ "isPersonal": false,
1934
+ "title": "Generic Unindexed Date 1",
1935
+ "type": "string",
1936
+ "usageDescription": "",
1937
+ "userEditable": true,
1938
+ "viewable": true
1939
+ },
1940
+ "frUnindexedDate2": {
1941
+ "description": "Generic Unindexed Date 2",
1942
+ "isPersonal": false,
1943
+ "title": "Generic Unindexed Date 2",
1944
+ "type": "string",
1945
+ "usageDescription": "",
1946
+ "userEditable": true,
1947
+ "viewable": true
1948
+ },
1949
+ "frUnindexedDate3": {
1950
+ "description": "Generic Unindexed Date 3",
1951
+ "isPersonal": false,
1952
+ "title": "Generic Unindexed Date 3",
1953
+ "type": "string",
1954
+ "usageDescription": "",
1955
+ "userEditable": true,
1956
+ "viewable": true
1957
+ },
1958
+ "frUnindexedDate4": {
1959
+ "description": "Generic Unindexed Date 4",
1960
+ "isPersonal": false,
1961
+ "title": "Generic Unindexed Date 4",
1962
+ "type": "string",
1963
+ "usageDescription": "",
1964
+ "userEditable": true,
1965
+ "viewable": true
1966
+ },
1967
+ "frUnindexedDate5": {
1968
+ "description": "Generic Unindexed Date 5",
1969
+ "isPersonal": false,
1970
+ "title": "Generic Unindexed Date 5",
1971
+ "type": "string",
1972
+ "usageDescription": "",
1973
+ "userEditable": true,
1974
+ "viewable": true
1975
+ },
1976
+ "frUnindexedInteger1": {
1977
+ "description": "Generic Unindexed Integer 1",
1978
+ "isPersonal": false,
1979
+ "title": "Generic Unindexed Integer 1",
1980
+ "type": "number",
1981
+ "usageDescription": "",
1982
+ "userEditable": true,
1983
+ "viewable": true
1984
+ },
1985
+ "frUnindexedInteger2": {
1986
+ "description": "Generic Unindexed Integer 2",
1987
+ "isPersonal": false,
1988
+ "title": "Generic Unindexed Integer 2",
1989
+ "type": "number",
1990
+ "usageDescription": "",
1991
+ "userEditable": true,
1992
+ "viewable": true
1993
+ },
1994
+ "frUnindexedInteger3": {
1995
+ "description": "Generic Unindexed Integer 3",
1996
+ "isPersonal": false,
1997
+ "title": "Generic Unindexed Integer 3",
1998
+ "type": "number",
1999
+ "usageDescription": "",
2000
+ "userEditable": true,
2001
+ "viewable": true
2002
+ },
2003
+ "frUnindexedInteger4": {
2004
+ "description": "Generic Unindexed Integer 4",
2005
+ "isPersonal": false,
2006
+ "title": "Generic Unindexed Integer 4",
2007
+ "type": "number",
2008
+ "usageDescription": "",
2009
+ "userEditable": true,
2010
+ "viewable": true
2011
+ },
2012
+ "frUnindexedInteger5": {
2013
+ "description": "Generic Unindexed Integer 5",
2014
+ "isPersonal": false,
2015
+ "title": "Generic Unindexed Integer 5",
2016
+ "type": "number",
2017
+ "usageDescription": "",
2018
+ "userEditable": true,
2019
+ "viewable": true
2020
+ },
2021
+ "frUnindexedMultivalued1": {
2022
+ "description": "Generic Unindexed Multivalue 1",
2023
+ "isPersonal": false,
2024
+ "items": {
2025
+ "type": "string"
2026
+ },
2027
+ "title": "Generic Unindexed Multivalue 1",
2028
+ "type": "array",
2029
+ "usageDescription": "",
2030
+ "userEditable": true,
2031
+ "viewable": true
2032
+ },
2033
+ "frUnindexedMultivalued2": {
2034
+ "description": "Generic Unindexed Multivalue 2",
2035
+ "isPersonal": false,
2036
+ "items": {
2037
+ "type": "string"
2038
+ },
2039
+ "title": "Generic Unindexed Multivalue 2",
2040
+ "type": "array",
2041
+ "usageDescription": "",
2042
+ "userEditable": true,
2043
+ "viewable": true
2044
+ },
2045
+ "frUnindexedMultivalued3": {
2046
+ "description": "Generic Unindexed Multivalue 3",
2047
+ "isPersonal": false,
2048
+ "items": {
2049
+ "type": "string"
2050
+ },
2051
+ "title": "Generic Unindexed Multivalue 3",
2052
+ "type": "array",
2053
+ "usageDescription": "",
2054
+ "userEditable": true,
2055
+ "viewable": true
2056
+ },
2057
+ "frUnindexedMultivalued4": {
2058
+ "description": "Generic Unindexed Multivalue 4",
2059
+ "isPersonal": false,
2060
+ "items": {
2061
+ "type": "string"
2062
+ },
2063
+ "title": "Generic Unindexed Multivalue 4",
2064
+ "type": "array",
2065
+ "usageDescription": "",
2066
+ "userEditable": true,
2067
+ "viewable": true
2068
+ },
2069
+ "frUnindexedMultivalued5": {
2070
+ "description": "Generic Unindexed Multivalue 5",
2071
+ "isPersonal": false,
2072
+ "items": {
2073
+ "type": "string"
2074
+ },
2075
+ "title": "Generic Unindexed Multivalue 5",
2076
+ "type": "array",
2077
+ "usageDescription": "",
2078
+ "userEditable": true,
2079
+ "viewable": true
2080
+ },
2081
+ "frUnindexedString1": {
2082
+ "description": "Generic Unindexed String 1",
2083
+ "isPersonal": false,
2084
+ "title": "Generic Unindexed String 1",
2085
+ "type": "string",
2086
+ "usageDescription": "",
2087
+ "userEditable": true,
2088
+ "viewable": true
2089
+ },
2090
+ "frUnindexedString2": {
2091
+ "description": "Generic Unindexed String 2",
2092
+ "isPersonal": false,
2093
+ "title": "Generic Unindexed String 2",
2094
+ "type": "string",
2095
+ "usageDescription": "",
2096
+ "userEditable": true,
2097
+ "viewable": true
2098
+ },
2099
+ "frUnindexedString3": {
2100
+ "description": "Generic Unindexed String 3",
2101
+ "isPersonal": false,
2102
+ "title": "Generic Unindexed String 3",
2103
+ "type": "string",
2104
+ "usageDescription": "",
2105
+ "userEditable": true,
2106
+ "viewable": true
2107
+ },
2108
+ "frUnindexedString4": {
2109
+ "description": "Generic Unindexed String 4",
2110
+ "isPersonal": false,
2111
+ "title": "Generic Unindexed String 4",
2112
+ "type": "string",
2113
+ "usageDescription": "",
2114
+ "userEditable": true,
2115
+ "viewable": true
2116
+ },
2117
+ "frUnindexedString5": {
2118
+ "description": "Generic Unindexed String 5",
2119
+ "isPersonal": false,
2120
+ "title": "Generic Unindexed String 5",
2121
+ "type": "string",
2122
+ "usageDescription": "",
2123
+ "userEditable": true,
2124
+ "viewable": true
2125
+ },
2126
+ "givenName": {
2127
+ "description": "First Name",
2128
+ "isPersonal": true,
2129
+ "searchable": true,
2130
+ "title": "First Name",
2131
+ "type": "string",
2132
+ "usageDescription": "",
2133
+ "userEditable": true,
2134
+ "viewable": true
2135
+ },
2136
+ "groups": {
2137
+ "description": "Groups",
2138
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:groups",
2139
+ "isPersonal": false,
2140
+ "items": {
2141
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:groups:items",
2142
+ "notifySelf": true,
2143
+ "properties": {
2144
+ "_ref": {
2145
+ "description": "References a relationship from a managed object",
2146
+ "type": "string"
2147
+ },
2148
+ "_refProperties": {
2149
+ "description": "Supports metadata within the relationship",
2150
+ "properties": {
2151
+ "_grantType": {
2152
+ "description": "Grant Type",
2153
+ "label": "Grant Type",
2154
+ "type": "string"
2155
+ },
2156
+ "_id": {
2157
+ "description": "_refProperties object ID",
2158
+ "type": "string"
2159
+ }
2160
+ },
2161
+ "title": "Groups Items _refProperties",
2162
+ "type": "object"
2163
+ }
2164
+ },
2165
+ "resourceCollection": [
2166
+ {
2167
+ "conditionalAssociationField": "condition",
2168
+ "label": "Group",
2169
+ "path": "managed/bravo_group",
2170
+ "query": {
2171
+ "fields": [],
2172
+ "queryFilter": "true"
2173
+ }
2174
+ }
2175
+ ],
2176
+ "reversePropertyName": "members",
2177
+ "reverseRelationship": true,
2178
+ "title": "Groups Items",
2179
+ "type": "relationship",
2180
+ "validate": true
2181
+ },
2182
+ "relationshipGrantTemporalConstraintsEnforced": false,
2183
+ "returnByDefault": false,
2184
+ "title": "Groups",
2185
+ "type": "array",
2186
+ "usageDescription": "",
2187
+ "userEditable": false,
2188
+ "viewable": true
2189
+ },
2190
+ "kbaInfo": {
2191
+ "description": "KBA Info",
2192
+ "isPersonal": true,
2193
+ "items": {
2194
+ "order": [
2195
+ "answer",
2196
+ "customQuestion",
2197
+ "questionId"
2198
+ ],
2199
+ "properties": {
2200
+ "answer": {
2201
+ "description": "Answer",
2202
+ "type": "string"
2203
+ },
2204
+ "customQuestion": {
2205
+ "description": "Custom question",
2206
+ "type": "string"
2207
+ },
2208
+ "questionId": {
2209
+ "description": "Question ID",
2210
+ "type": "string"
2211
+ }
2212
+ },
2213
+ "required": [],
2214
+ "title": "KBA Info Items",
2215
+ "type": "object"
2216
+ },
2217
+ "type": "array",
2218
+ "usageDescription": "",
2219
+ "userEditable": true,
2220
+ "viewable": false
2221
+ },
2222
+ "lastSync": {
2223
+ "description": "Last Sync timestamp",
2224
+ "isPersonal": false,
2225
+ "order": [
2226
+ "effectiveAssignments",
2227
+ "timestamp"
2228
+ ],
2229
+ "properties": {
2230
+ "effectiveAssignments": {
2231
+ "description": "Effective Assignments",
2232
+ "items": {
2233
+ "title": "Effective Assignments Items",
2234
+ "type": "object"
2235
+ },
2236
+ "title": "Effective Assignments",
2237
+ "type": "array"
2238
+ },
2239
+ "timestamp": {
2240
+ "description": "Timestamp",
2241
+ "type": "string"
2242
+ }
2243
+ },
2244
+ "required": [],
2245
+ "scope": "private",
2246
+ "searchable": false,
2247
+ "title": "Last Sync timestamp",
2248
+ "type": "object",
2249
+ "usageDescription": "",
2250
+ "viewable": false
2251
+ },
2252
+ "mail": {
2253
+ "description": "Email Address",
2254
+ "isPersonal": true,
2255
+ "policies": [
2256
+ {
2257
+ "policyId": "valid-email-address-format"
2258
+ }
2259
+ ],
2260
+ "searchable": true,
2261
+ "title": "Email Address",
2262
+ "type": "string",
2263
+ "usageDescription": "",
2264
+ "userEditable": true,
2265
+ "viewable": true
2266
+ },
2267
+ "manager": {
2268
+ "description": "Manager",
2269
+ "isPersonal": false,
2270
+ "properties": {
2271
+ "_ref": {
2272
+ "description": "References a relationship from a managed object",
2273
+ "type": "string"
2274
+ },
2275
+ "_refProperties": {
2276
+ "description": "Supports metadata within the relationship",
2277
+ "properties": {
2278
+ "_id": {
2279
+ "description": "_refProperties object ID",
2280
+ "type": "string"
2281
+ }
2282
+ },
2283
+ "title": "Manager _refProperties",
2284
+ "type": "object"
2285
+ }
2286
+ },
2287
+ "resourceCollection": [
2288
+ {
2289
+ "label": "User",
2290
+ "path": "managed/bravo_user",
2291
+ "query": {
2292
+ "fields": [
2293
+ "userName",
2294
+ "givenName",
2295
+ "sn"
2296
+ ],
2297
+ "queryFilter": "true"
2298
+ }
2299
+ }
2300
+ ],
2301
+ "reversePropertyName": "reports",
2302
+ "reverseRelationship": true,
2303
+ "searchable": false,
2304
+ "title": "Manager",
2305
+ "type": "relationship",
2306
+ "usageDescription": "",
2307
+ "userEditable": false,
2308
+ "validate": true,
2309
+ "viewable": true
2310
+ },
2311
+ "memberOfOrg": {
2312
+ "items": {
2313
+ "notifySelf": true,
2314
+ "properties": {
2315
+ "_ref": {
2316
+ "type": "string"
2317
+ },
2318
+ "_refProperties": {
2319
+ "properties": {
2320
+ "_id": {
2321
+ "propName": "_id",
2322
+ "required": false,
2323
+ "type": "string"
2324
+ }
2325
+ },
2326
+ "type": "object"
2327
+ }
2328
+ },
2329
+ "resourceCollection": [
2330
+ {
2331
+ "label": "Organization",
2332
+ "notify": false,
2333
+ "path": "managed/bravo_organization",
2334
+ "query": {
2335
+ "fields": [
2336
+ "name"
2337
+ ],
2338
+ "queryFilter": "true",
2339
+ "sortKeys": []
2340
+ }
2341
+ }
2342
+ ],
2343
+ "reversePropertyName": "members",
2344
+ "reverseRelationship": true,
2345
+ "type": "relationship",
2346
+ "validate": true
2347
+ },
2348
+ "policies": [],
2349
+ "returnByDefault": false,
2350
+ "searchable": false,
2351
+ "title": "Organizations to which I Belong",
2352
+ "type": "array",
2353
+ "userEditable": false,
2354
+ "viewable": true
2355
+ },
2356
+ "memberOfOrgIDs": {
2357
+ "isVirtual": true,
2358
+ "items": {
2359
+ "title": "org identifiers",
2360
+ "type": "string"
2361
+ },
2362
+ "queryConfig": {
2363
+ "flattenProperties": true,
2364
+ "referencedObjectFields": [
2365
+ "_id",
2366
+ "parentIDs"
2367
+ ],
2368
+ "referencedRelationshipFields": [
2369
+ "memberOfOrg"
2370
+ ]
2371
+ },
2372
+ "returnByDefault": true,
2373
+ "searchable": false,
2374
+ "title": "MemberOfOrgIDs",
2375
+ "type": "array",
2376
+ "userEditable": false,
2377
+ "viewable": false
2378
+ },
2379
+ "ownerOfOrg": {
2380
+ "items": {
2381
+ "notifySelf": false,
2382
+ "properties": {
2383
+ "_ref": {
2384
+ "type": "string"
2385
+ },
2386
+ "_refProperties": {
2387
+ "properties": {
2388
+ "_id": {
2389
+ "propName": "_id",
2390
+ "required": false,
2391
+ "type": "string"
2392
+ }
2393
+ },
2394
+ "type": "object"
2395
+ }
2396
+ },
2397
+ "resourceCollection": [
2398
+ {
2399
+ "label": "Organization",
2400
+ "notify": true,
2401
+ "path": "managed/bravo_organization",
2402
+ "query": {
2403
+ "fields": [
2404
+ "name"
2405
+ ],
2406
+ "queryFilter": "true",
2407
+ "sortKeys": []
2408
+ }
2409
+ }
2410
+ ],
2411
+ "reversePropertyName": "owners",
2412
+ "reverseRelationship": true,
2413
+ "type": "relationship",
2414
+ "validate": true
2415
+ },
2416
+ "policies": [],
2417
+ "returnByDefault": false,
2418
+ "searchable": false,
2419
+ "title": "Organizations I Own",
2420
+ "type": "array",
2421
+ "userEditable": false,
2422
+ "viewable": true
2423
+ },
2424
+ "password": {
2425
+ "description": "Password",
2426
+ "isPersonal": false,
2427
+ "isProtected": true,
2428
+ "scope": "private",
2429
+ "searchable": false,
2430
+ "title": "Password",
2431
+ "type": "string",
2432
+ "usageDescription": "",
2433
+ "userEditable": true,
2434
+ "viewable": false
2435
+ },
2436
+ "postalAddress": {
2437
+ "description": "Address 1",
2438
+ "isPersonal": true,
2439
+ "title": "Address 1",
2440
+ "type": "string",
2441
+ "usageDescription": "",
2442
+ "userEditable": true,
2443
+ "viewable": true
2444
+ },
2445
+ "postalCode": {
2446
+ "description": "Postal Code",
2447
+ "isPersonal": false,
2448
+ "title": "Postal Code",
2449
+ "type": "string",
2450
+ "usageDescription": "",
2451
+ "userEditable": true,
2452
+ "viewable": true
2453
+ },
2454
+ "preferences": {
2455
+ "description": "Preferences",
2456
+ "isPersonal": false,
2457
+ "order": [
2458
+ "updates",
2459
+ "marketing"
2460
+ ],
2461
+ "properties": {
2462
+ "marketing": {
2463
+ "description": "Send me special offers and services",
2464
+ "type": "boolean"
2465
+ },
2466
+ "updates": {
2467
+ "description": "Send me news and updates",
2468
+ "type": "boolean"
2469
+ }
2470
+ },
2471
+ "required": [],
2472
+ "searchable": false,
2473
+ "title": "Preferences",
2474
+ "type": "object",
2475
+ "usageDescription": "",
2476
+ "userEditable": true,
2477
+ "viewable": true
2478
+ },
2479
+ "profileImage": {
2480
+ "description": "Profile Image",
2481
+ "isPersonal": true,
2482
+ "searchable": true,
2483
+ "title": "Profile Image",
2484
+ "type": "string",
2485
+ "usageDescription": "",
2486
+ "userEditable": true,
2487
+ "viewable": false
2488
+ },
2489
+ "reports": {
2490
+ "description": "Direct Reports",
2491
+ "isPersonal": false,
2492
+ "items": {
2493
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:reports:items",
2494
+ "properties": {
2495
+ "_ref": {
2496
+ "description": "References a relationship from a managed object",
2497
+ "type": "string"
2498
+ },
2499
+ "_refProperties": {
2500
+ "description": "Supports metadata within the relationship",
2501
+ "properties": {
2502
+ "_id": {
2503
+ "description": "_refProperties object ID",
2504
+ "type": "string"
2505
+ }
2506
+ },
2507
+ "title": "Direct Reports Items _refProperties",
2508
+ "type": "object"
2509
+ }
2510
+ },
2511
+ "resourceCollection": [
2512
+ {
2513
+ "label": "User",
2514
+ "path": "managed/bravo_user",
2515
+ "query": {
2516
+ "fields": [
2517
+ "userName",
2518
+ "givenName",
2519
+ "sn"
2520
+ ],
2521
+ "queryFilter": "true"
2522
+ }
2523
+ }
2524
+ ],
2525
+ "reversePropertyName": "manager",
2526
+ "reverseRelationship": true,
2527
+ "title": "Direct Reports Items",
2528
+ "type": "relationship",
2529
+ "validate": true
2530
+ },
2531
+ "returnByDefault": false,
2532
+ "title": "Direct Reports",
2533
+ "type": "array",
2534
+ "usageDescription": "",
2535
+ "userEditable": false,
2536
+ "viewable": true
2537
+ },
2538
+ "roles": {
2539
+ "description": "Provisioning Roles",
2540
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:roles",
2541
+ "isPersonal": false,
2542
+ "items": {
2543
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:User:roles:items",
2544
+ "notifySelf": true,
2545
+ "properties": {
2546
+ "_ref": {
2547
+ "description": "References a relationship from a managed object",
2548
+ "type": "string"
2549
+ },
2550
+ "_refProperties": {
2551
+ "description": "Supports metadata within the relationship",
2552
+ "properties": {
2553
+ "_grantType": {
2554
+ "description": "Grant Type",
2555
+ "label": "Grant Type",
2556
+ "type": "string"
2557
+ },
2558
+ "_id": {
2559
+ "description": "_refProperties object ID",
2560
+ "type": "string"
2561
+ }
2562
+ },
2563
+ "title": "Provisioning Roles Items _refProperties",
2564
+ "type": "object"
2565
+ }
2566
+ },
2567
+ "resourceCollection": [
2568
+ {
2569
+ "conditionalAssociationField": "condition",
2570
+ "label": "Role",
2571
+ "path": "managed/bravo_role",
2572
+ "query": {
2573
+ "fields": [
2574
+ "name"
2575
+ ],
2576
+ "queryFilter": "true"
2577
+ }
2578
+ }
2579
+ ],
2580
+ "reversePropertyName": "members",
2581
+ "reverseRelationship": true,
2582
+ "title": "Provisioning Roles Items",
2583
+ "type": "relationship",
2584
+ "validate": true
2585
+ },
2586
+ "relationshipGrantTemporalConstraintsEnforced": true,
2587
+ "returnByDefault": false,
2588
+ "title": "Provisioning Roles",
2589
+ "type": "array",
2590
+ "usageDescription": "",
2591
+ "userEditable": false,
2592
+ "viewable": true
2593
+ },
2594
+ "sn": {
2595
+ "description": "Last Name",
2596
+ "isPersonal": true,
2597
+ "searchable": true,
2598
+ "title": "Last Name",
2599
+ "type": "string",
2600
+ "usageDescription": "",
2601
+ "userEditable": true,
2602
+ "viewable": true
2603
+ },
2604
+ "stateProvince": {
2605
+ "description": "State/Province",
2606
+ "isPersonal": false,
2607
+ "title": "State/Province",
2608
+ "type": "string",
2609
+ "usageDescription": "",
2610
+ "userEditable": true,
2611
+ "viewable": true
2612
+ },
2613
+ "telephoneNumber": {
2614
+ "description": "Telephone Number",
2615
+ "isPersonal": true,
2616
+ "pattern": "^\\+?([0-9\\- \\(\\)])*$",
2617
+ "title": "Telephone Number",
2618
+ "type": "string",
2619
+ "usageDescription": "",
2620
+ "userEditable": true,
2621
+ "viewable": true
2622
+ },
2623
+ "userName": {
2624
+ "description": "Username",
2625
+ "isPersonal": true,
2626
+ "minLength": 1,
2627
+ "policies": [
2628
+ {
2629
+ "policyId": "valid-username"
2630
+ },
2631
+ {
2632
+ "params": {
2633
+ "forbiddenChars": [
2634
+ "/"
2635
+ ]
2636
+ },
2637
+ "policyId": "cannot-contain-characters"
2638
+ },
2639
+ {
2640
+ "params": {
2641
+ "minLength": 1
2642
+ },
2643
+ "policyId": "minimum-length"
2644
+ },
2645
+ {
2646
+ "params": {
2647
+ "maxLength": 255
2648
+ },
2649
+ "policyId": "maximum-length"
2650
+ }
2651
+ ],
2652
+ "searchable": true,
2653
+ "title": "Username",
2654
+ "type": "string",
2655
+ "usageDescription": "",
2656
+ "userEditable": true,
2657
+ "viewable": true
2658
+ }
2659
+ },
2660
+ "required": [
2661
+ "userName",
2662
+ "givenName",
2663
+ "sn",
2664
+ "mail"
2665
+ ],
2666
+ "title": "Bravo realm - User",
2667
+ "type": "object",
2668
+ "viewable": true
2669
+ }
2670
+ },
2671
+ {
2672
+ "name": "alpha_role",
2673
+ "schema": {
2674
+ "$schema": "http://forgerock.org/json-schema#",
2675
+ "description": "",
2676
+ "icon": "fa-check-square-o",
2677
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Role",
2678
+ "mat-icon": "assignment_ind",
2679
+ "order": [
2680
+ "_id",
2681
+ "name",
2682
+ "description",
2683
+ "members",
2684
+ "assignments",
2685
+ "condition",
2686
+ "temporalConstraints"
2687
+ ],
2688
+ "properties": {
2689
+ "_id": {
2690
+ "description": "Role ID",
2691
+ "searchable": false,
2692
+ "title": "Name",
2693
+ "type": "string",
2694
+ "viewable": false
2695
+ },
2696
+ "assignments": {
2697
+ "description": "Managed Assignments",
2698
+ "items": {
2699
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Role:assignments:items",
2700
+ "notifySelf": true,
2701
+ "properties": {
2702
+ "_ref": {
2703
+ "description": "References a relationship from a managed object",
2704
+ "type": "string"
2705
+ },
2706
+ "_refProperties": {
2707
+ "description": "Supports metadata within the relationship",
2708
+ "properties": {
2709
+ "_id": {
2710
+ "description": "_refProperties object ID",
2711
+ "type": "string"
2712
+ }
2713
+ },
2714
+ "title": "Managed Assignments Items _refProperties",
2715
+ "type": "object"
2716
+ }
2717
+ },
2718
+ "resourceCollection": [
2719
+ {
2720
+ "label": "Assignment",
2721
+ "path": "managed/alpha_assignment",
2722
+ "query": {
2723
+ "fields": [
2724
+ "name"
2725
+ ],
2726
+ "queryFilter": "true"
2727
+ }
2728
+ }
2729
+ ],
2730
+ "reversePropertyName": "roles",
2731
+ "reverseRelationship": true,
2732
+ "title": "Managed Assignments Items",
2733
+ "type": "relationship",
2734
+ "validate": true
2735
+ },
2736
+ "notifyRelationships": [
2737
+ "members"
2738
+ ],
2739
+ "returnByDefault": false,
2740
+ "title": "Managed Assignments",
2741
+ "type": "array",
2742
+ "viewable": true
2743
+ },
2744
+ "condition": {
2745
+ "description": "A conditional filter for this role",
2746
+ "isConditional": true,
2747
+ "searchable": false,
2748
+ "title": "Condition",
2749
+ "type": "string",
2750
+ "viewable": false
2751
+ },
2752
+ "description": {
2753
+ "description": "The role description, used for display purposes.",
2754
+ "searchable": true,
2755
+ "title": "Description",
2756
+ "type": "string",
2757
+ "viewable": true
2758
+ },
2759
+ "members": {
2760
+ "description": "Role Members",
2761
+ "items": {
2762
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Role:members:items",
2763
+ "properties": {
2764
+ "_ref": {
2765
+ "description": "References a relationship from a managed object",
2766
+ "type": "string"
2767
+ },
2768
+ "_refProperties": {
2769
+ "description": "Supports metadata within the relationship",
2770
+ "properties": {
2771
+ "_grantType": {
2772
+ "description": "Grant Type",
2773
+ "label": "Grant Type",
2774
+ "type": "string"
2775
+ },
2776
+ "_id": {
2777
+ "description": "_refProperties object ID",
2778
+ "type": "string"
2779
+ }
2780
+ },
2781
+ "title": "Role Members Items _refProperties",
2782
+ "type": "object"
2783
+ }
2784
+ },
2785
+ "resourceCollection": [
2786
+ {
2787
+ "conditionalAssociation": true,
2788
+ "label": "User",
2789
+ "notify": true,
2790
+ "path": "managed/alpha_user",
2791
+ "query": {
2792
+ "fields": [
2793
+ "userName",
2794
+ "givenName",
2795
+ "sn"
2796
+ ],
2797
+ "queryFilter": "true"
2798
+ }
2799
+ }
2800
+ ],
2801
+ "reversePropertyName": "roles",
2802
+ "reverseRelationship": true,
2803
+ "title": "Role Members Items",
2804
+ "type": "relationship",
2805
+ "validate": true
2806
+ },
2807
+ "relationshipGrantTemporalConstraintsEnforced": true,
2808
+ "returnByDefault": false,
2809
+ "title": "Role Members",
2810
+ "type": "array",
2811
+ "viewable": true
2812
+ },
2813
+ "name": {
2814
+ "description": "The role name, used for display purposes.",
2815
+ "searchable": true,
2816
+ "title": "Name",
2817
+ "type": "string",
2818
+ "viewable": true
2819
+ },
2820
+ "temporalConstraints": {
2821
+ "description": "An array of temporal constraints for a role",
2822
+ "isTemporalConstraint": true,
2823
+ "items": {
2824
+ "order": [
2825
+ "duration"
2826
+ ],
2827
+ "properties": {
2828
+ "duration": {
2829
+ "description": "Duration",
2830
+ "type": "string"
2831
+ }
2832
+ },
2833
+ "required": [
2834
+ "duration"
2835
+ ],
2836
+ "title": "Temporal Constraints Items",
2837
+ "type": "object"
2838
+ },
2839
+ "notifyRelationships": [
2840
+ "members"
2841
+ ],
2842
+ "returnByDefault": true,
2843
+ "title": "Temporal Constraints",
2844
+ "type": "array",
2845
+ "viewable": false
2846
+ }
2847
+ },
2848
+ "required": [
2849
+ "name"
2850
+ ],
2851
+ "title": "Alpha realm - Role",
2852
+ "type": "object"
2853
+ }
2854
+ },
2855
+ {
2856
+ "name": "bravo_role",
2857
+ "schema": {
2858
+ "$schema": "http://forgerock.org/json-schema#",
2859
+ "description": "",
2860
+ "icon": "fa-check-square-o",
2861
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Role",
2862
+ "mat-icon": "assignment_ind",
2863
+ "order": [
2864
+ "_id",
2865
+ "name",
2866
+ "description",
2867
+ "members",
2868
+ "assignments",
2869
+ "condition",
2870
+ "temporalConstraints"
2871
+ ],
2872
+ "properties": {
2873
+ "_id": {
2874
+ "description": "Role ID",
2875
+ "searchable": false,
2876
+ "title": "Name",
2877
+ "type": "string",
2878
+ "viewable": false
2879
+ },
2880
+ "assignments": {
2881
+ "description": "Managed Assignments",
2882
+ "items": {
2883
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Role:assignments:items",
2884
+ "notifySelf": true,
2885
+ "properties": {
2886
+ "_ref": {
2887
+ "description": "References a relationship from a managed object",
2888
+ "type": "string"
2889
+ },
2890
+ "_refProperties": {
2891
+ "description": "Supports metadata within the relationship",
2892
+ "properties": {
2893
+ "_id": {
2894
+ "description": "_refProperties object ID",
2895
+ "type": "string"
2896
+ }
2897
+ },
2898
+ "title": "Managed Assignments Items _refProperties",
2899
+ "type": "object"
2900
+ }
2901
+ },
2902
+ "resourceCollection": [
2903
+ {
2904
+ "label": "Assignment",
2905
+ "path": "managed/bravo_assignment",
2906
+ "query": {
2907
+ "fields": [
2908
+ "name"
2909
+ ],
2910
+ "queryFilter": "true"
2911
+ }
2912
+ }
2913
+ ],
2914
+ "reversePropertyName": "roles",
2915
+ "reverseRelationship": true,
2916
+ "title": "Managed Assignments Items",
2917
+ "type": "relationship",
2918
+ "validate": true
2919
+ },
2920
+ "notifyRelationships": [
2921
+ "members"
2922
+ ],
2923
+ "returnByDefault": false,
2924
+ "title": "Managed Assignments",
2925
+ "type": "array",
2926
+ "viewable": true
2927
+ },
2928
+ "condition": {
2929
+ "description": "A conditional filter for this role",
2930
+ "isConditional": true,
2931
+ "searchable": false,
2932
+ "title": "Condition",
2933
+ "type": "string",
2934
+ "viewable": false
2935
+ },
2936
+ "description": {
2937
+ "description": "The role description, used for display purposes.",
2938
+ "searchable": true,
2939
+ "title": "Description",
2940
+ "type": "string",
2941
+ "viewable": true
2942
+ },
2943
+ "members": {
2944
+ "description": "Role Members",
2945
+ "items": {
2946
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Role:members:items",
2947
+ "properties": {
2948
+ "_ref": {
2949
+ "description": "References a relationship from a managed object",
2950
+ "type": "string"
2951
+ },
2952
+ "_refProperties": {
2953
+ "description": "Supports metadata within the relationship",
2954
+ "properties": {
2955
+ "_grantType": {
2956
+ "description": "Grant Type",
2957
+ "label": "Grant Type",
2958
+ "type": "string"
2959
+ },
2960
+ "_id": {
2961
+ "description": "_refProperties object ID",
2962
+ "type": "string"
2963
+ }
2964
+ },
2965
+ "title": "Role Members Items _refProperties",
2966
+ "type": "object"
2967
+ }
2968
+ },
2969
+ "resourceCollection": [
2970
+ {
2971
+ "conditionalAssociation": true,
2972
+ "label": "User",
2973
+ "notify": true,
2974
+ "path": "managed/bravo_user",
2975
+ "query": {
2976
+ "fields": [
2977
+ "userName",
2978
+ "givenName",
2979
+ "sn"
2980
+ ],
2981
+ "queryFilter": "true"
2982
+ }
2983
+ }
2984
+ ],
2985
+ "reversePropertyName": "roles",
2986
+ "reverseRelationship": true,
2987
+ "title": "Role Members Items",
2988
+ "type": "relationship",
2989
+ "validate": true
2990
+ },
2991
+ "relationshipGrantTemporalConstraintsEnforced": true,
2992
+ "returnByDefault": false,
2993
+ "title": "Role Members",
2994
+ "type": "array",
2995
+ "viewable": true
2996
+ },
2997
+ "name": {
2998
+ "description": "The role name, used for display purposes.",
2999
+ "searchable": true,
3000
+ "title": "Name",
3001
+ "type": "string",
3002
+ "viewable": true
3003
+ },
3004
+ "temporalConstraints": {
3005
+ "description": "An array of temporal constraints for a role",
3006
+ "isTemporalConstraint": true,
3007
+ "items": {
3008
+ "order": [
3009
+ "duration"
3010
+ ],
3011
+ "properties": {
3012
+ "duration": {
3013
+ "description": "Duration",
3014
+ "type": "string"
3015
+ }
3016
+ },
3017
+ "required": [
3018
+ "duration"
3019
+ ],
3020
+ "title": "Temporal Constraints Items",
3021
+ "type": "object"
3022
+ },
3023
+ "notifyRelationships": [
3024
+ "members"
3025
+ ],
3026
+ "returnByDefault": true,
3027
+ "title": "Temporal Constraints",
3028
+ "type": "array",
3029
+ "viewable": false
3030
+ }
3031
+ },
3032
+ "required": [
3033
+ "name"
3034
+ ],
3035
+ "title": "Bravo realm - Role",
3036
+ "type": "object"
3037
+ }
3038
+ },
3039
+ {
3040
+ "name": "alpha_assignment",
3041
+ "schema": {
3042
+ "$schema": "http://forgerock.org/json-schema#",
3043
+ "description": "A role assignment",
3044
+ "icon": "fa-key",
3045
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Assignment",
3046
+ "mat-icon": "vpn_key",
3047
+ "order": [
3048
+ "_id",
3049
+ "name",
3050
+ "description",
3051
+ "mapping",
3052
+ "attributes",
3053
+ "linkQualifiers",
3054
+ "roles"
3055
+ ],
3056
+ "properties": {
3057
+ "_id": {
3058
+ "description": "The assignment ID",
3059
+ "searchable": false,
3060
+ "title": "Name",
3061
+ "type": "string",
3062
+ "viewable": false
3063
+ },
3064
+ "attributes": {
3065
+ "description": "The attributes operated on by this assignment.",
3066
+ "items": {
3067
+ "order": [
3068
+ "assignmentOperation",
3069
+ "unassignmentOperation",
3070
+ "name",
3071
+ "value"
3072
+ ],
3073
+ "properties": {
3074
+ "assignmentOperation": {
3075
+ "description": "Assignment operation",
3076
+ "type": "string"
3077
+ },
3078
+ "name": {
3079
+ "description": "Name",
3080
+ "type": "string"
3081
+ },
3082
+ "unassignmentOperation": {
3083
+ "description": "Unassignment operation",
3084
+ "type": "string"
3085
+ },
3086
+ "value": {
3087
+ "description": "Value",
3088
+ "type": "string"
3089
+ }
3090
+ },
3091
+ "required": [],
3092
+ "title": "Assignment Attributes Items",
3093
+ "type": "object"
3094
+ },
3095
+ "notifyRelationships": [
3096
+ "roles"
3097
+ ],
3098
+ "title": "Assignment Attributes",
3099
+ "type": "array",
3100
+ "viewable": true
3101
+ },
3102
+ "description": {
3103
+ "description": "The assignment description, used for display purposes.",
3104
+ "searchable": true,
3105
+ "title": "Description",
3106
+ "type": "string",
3107
+ "viewable": true
3108
+ },
3109
+ "linkQualifiers": {
3110
+ "description": "Conditional link qualifiers to restrict this assignment to.",
3111
+ "items": {
3112
+ "title": "Link Qualifiers Items",
3113
+ "type": "string"
3114
+ },
3115
+ "title": "Link Qualifiers",
3116
+ "type": "array",
3117
+ "viewable": true
3118
+ },
3119
+ "mapping": {
3120
+ "description": "The name of the mapping this assignment applies to",
3121
+ "policies": [
3122
+ {
3123
+ "policyId": "mapping-exists"
3124
+ }
3125
+ ],
3126
+ "searchable": true,
3127
+ "title": "Mapping",
3128
+ "type": "string",
3129
+ "viewable": true
3130
+ },
3131
+ "name": {
3132
+ "description": "The assignment name, used for display purposes.",
3133
+ "searchable": true,
3134
+ "title": "Name",
3135
+ "type": "string",
3136
+ "viewable": true
3137
+ },
3138
+ "roles": {
3139
+ "description": "Managed Roles",
3140
+ "items": {
3141
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Assignment:roles:items",
3142
+ "properties": {
3143
+ "_ref": {
3144
+ "description": "References a relationship from a managed object",
3145
+ "type": "string"
3146
+ },
3147
+ "_refProperties": {
3148
+ "description": "Supports metadata within the relationship",
3149
+ "properties": {
3150
+ "_id": {
3151
+ "description": "_refProperties object ID",
3152
+ "type": "string"
3153
+ }
3154
+ },
3155
+ "title": "Managed Roles Items _refProperties",
3156
+ "type": "object"
3157
+ }
3158
+ },
3159
+ "resourceCollection": [
3160
+ {
3161
+ "label": "Role",
3162
+ "notify": true,
3163
+ "path": "managed/alpha_role",
3164
+ "query": {
3165
+ "fields": [
3166
+ "name"
3167
+ ],
3168
+ "queryFilter": "true"
3169
+ }
3170
+ }
3171
+ ],
3172
+ "reversePropertyName": "assignments",
3173
+ "reverseRelationship": true,
3174
+ "title": "Managed Roles Items",
3175
+ "type": "relationship",
3176
+ "validate": true
3177
+ },
3178
+ "returnByDefault": false,
3179
+ "title": "Managed Roles",
3180
+ "type": "array",
3181
+ "userEditable": false,
3182
+ "viewable": true
3183
+ }
3184
+ },
3185
+ "required": [
3186
+ "name",
3187
+ "description",
3188
+ "mapping"
3189
+ ],
3190
+ "title": "Alpha realm - Assignment",
3191
+ "type": "object"
3192
+ }
3193
+ },
3194
+ {
3195
+ "name": "bravo_assignment",
3196
+ "schema": {
3197
+ "$schema": "http://forgerock.org/json-schema#",
3198
+ "description": "A role assignment",
3199
+ "icon": "fa-key",
3200
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Assignment",
3201
+ "mat-icon": "vpn_key",
3202
+ "order": [
3203
+ "_id",
3204
+ "name",
3205
+ "description",
3206
+ "mapping",
3207
+ "attributes",
3208
+ "linkQualifiers",
3209
+ "roles"
3210
+ ],
3211
+ "properties": {
3212
+ "_id": {
3213
+ "description": "The assignment ID",
3214
+ "searchable": false,
3215
+ "title": "Name",
3216
+ "type": "string",
3217
+ "viewable": false
3218
+ },
3219
+ "attributes": {
3220
+ "description": "The attributes operated on by this assignment.",
3221
+ "items": {
3222
+ "order": [
3223
+ "assignmentOperation",
3224
+ "unassignmentOperation",
3225
+ "name",
3226
+ "value"
3227
+ ],
3228
+ "properties": {
3229
+ "assignmentOperation": {
3230
+ "description": "Assignment operation",
3231
+ "type": "string"
3232
+ },
3233
+ "name": {
3234
+ "description": "Name",
3235
+ "type": "string"
3236
+ },
3237
+ "unassignmentOperation": {
3238
+ "description": "Unassignment operation",
3239
+ "type": "string"
3240
+ },
3241
+ "value": {
3242
+ "description": "Value",
3243
+ "type": "string"
3244
+ }
3245
+ },
3246
+ "required": [],
3247
+ "title": "Assignment Attributes Items",
3248
+ "type": "object"
3249
+ },
3250
+ "notifyRelationships": [
3251
+ "roles"
3252
+ ],
3253
+ "title": "Assignment Attributes",
3254
+ "type": "array",
3255
+ "viewable": true
3256
+ },
3257
+ "description": {
3258
+ "description": "The assignment description, used for display purposes.",
3259
+ "searchable": true,
3260
+ "title": "Description",
3261
+ "type": "string",
3262
+ "viewable": true
3263
+ },
3264
+ "linkQualifiers": {
3265
+ "description": "Conditional link qualifiers to restrict this assignment to.",
3266
+ "items": {
3267
+ "title": "Link Qualifiers Items",
3268
+ "type": "string"
3269
+ },
3270
+ "title": "Link Qualifiers",
3271
+ "type": "array",
3272
+ "viewable": true
3273
+ },
3274
+ "mapping": {
3275
+ "description": "The name of the mapping this assignment applies to",
3276
+ "policies": [
3277
+ {
3278
+ "policyId": "mapping-exists"
3279
+ }
3280
+ ],
3281
+ "searchable": true,
3282
+ "title": "Mapping",
3283
+ "type": "string",
3284
+ "viewable": true
3285
+ },
3286
+ "name": {
3287
+ "description": "The assignment name, used for display purposes.",
3288
+ "searchable": true,
3289
+ "title": "Name",
3290
+ "type": "string",
3291
+ "viewable": true
3292
+ },
3293
+ "roles": {
3294
+ "description": "Managed Roles",
3295
+ "items": {
3296
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Assignment:roles:items",
3297
+ "properties": {
3298
+ "_ref": {
3299
+ "description": "References a relationship from a managed object",
3300
+ "type": "string"
3301
+ },
3302
+ "_refProperties": {
3303
+ "description": "Supports metadata within the relationship",
3304
+ "properties": {
3305
+ "_id": {
3306
+ "description": "_refProperties object ID",
3307
+ "type": "string"
3308
+ }
3309
+ },
3310
+ "title": "Managed Roles Items _refProperties",
3311
+ "type": "object"
3312
+ }
3313
+ },
3314
+ "resourceCollection": [
3315
+ {
3316
+ "label": "Role",
3317
+ "notify": true,
3318
+ "path": "managed/bravo_role",
3319
+ "query": {
3320
+ "fields": [
3321
+ "name"
3322
+ ],
3323
+ "queryFilter": "true"
3324
+ }
3325
+ }
3326
+ ],
3327
+ "reversePropertyName": "assignments",
3328
+ "reverseRelationship": true,
3329
+ "title": "Managed Roles Items",
3330
+ "type": "relationship",
3331
+ "validate": true
3332
+ },
3333
+ "returnByDefault": false,
3334
+ "title": "Managed Roles",
3335
+ "type": "array",
3336
+ "userEditable": false,
3337
+ "viewable": true
3338
+ }
3339
+ },
3340
+ "required": [
3341
+ "name",
3342
+ "description",
3343
+ "mapping"
3344
+ ],
3345
+ "title": "Bravo realm - Assignment",
3346
+ "type": "object"
3347
+ }
3348
+ },
3349
+ {
3350
+ "name": "alpha_organization",
3351
+ "schema": {
3352
+ "$schema": "http://forgerock.org/json-schema#",
3353
+ "description": "An organization or tenant, whose resources are managed by organizational admins.",
3354
+ "icon": "fa-building",
3355
+ "order": [
3356
+ "name",
3357
+ "description",
3358
+ "owners",
3359
+ "admins",
3360
+ "members",
3361
+ "parent",
3362
+ "children",
3363
+ "adminIDs",
3364
+ "ownerIDs",
3365
+ "parentAdminIDs",
3366
+ "parentOwnerIDs",
3367
+ "parentIDs",
3368
+ "test"
3369
+ ],
3370
+ "properties": {
3371
+ "adminIDs": {
3372
+ "isVirtual": true,
3373
+ "items": {
3374
+ "title": "admin ids",
3375
+ "type": "string"
3376
+ },
3377
+ "queryConfig": {
3378
+ "flattenProperties": true,
3379
+ "referencedObjectFields": [
3380
+ "_id"
3381
+ ],
3382
+ "referencedRelationshipFields": [
3383
+ "admins"
3384
+ ]
3385
+ },
3386
+ "returnByDefault": true,
3387
+ "searchable": false,
3388
+ "title": "Admin user ids",
3389
+ "type": "array",
3390
+ "userEditable": false,
3391
+ "viewable": false
3392
+ },
3393
+ "admins": {
3394
+ "items": {
3395
+ "notifySelf": true,
3396
+ "properties": {
3397
+ "_ref": {
3398
+ "type": "string"
3399
+ },
3400
+ "_refProperties": {
3401
+ "properties": {
3402
+ "_id": {
3403
+ "propName": "_id",
3404
+ "required": false,
3405
+ "type": "string"
3406
+ }
3407
+ },
3408
+ "type": "object"
3409
+ }
3410
+ },
3411
+ "resourceCollection": [
3412
+ {
3413
+ "label": "User",
3414
+ "notify": false,
3415
+ "path": "managed/alpha_user",
3416
+ "query": {
3417
+ "fields": [
3418
+ "userName",
3419
+ "givenName",
3420
+ "sn"
3421
+ ],
3422
+ "queryFilter": "true",
3423
+ "sortKeys": []
3424
+ }
3425
+ }
3426
+ ],
3427
+ "reversePropertyName": "adminOfOrg",
3428
+ "reverseRelationship": true,
3429
+ "type": "relationship",
3430
+ "validate": true
3431
+ },
3432
+ "notifyRelationships": [
3433
+ "children"
3434
+ ],
3435
+ "returnByDefault": false,
3436
+ "searchable": false,
3437
+ "title": "Administrators",
3438
+ "type": "array",
3439
+ "userEditable": false,
3440
+ "viewable": true
3441
+ },
3442
+ "children": {
3443
+ "description": "Child Organizations",
3444
+ "items": {
3445
+ "notifySelf": true,
3446
+ "properties": {
3447
+ "_ref": {
3448
+ "type": "string"
3449
+ },
3450
+ "_refProperties": {
3451
+ "properties": {
3452
+ "_id": {
3453
+ "propName": "_id",
3454
+ "required": false,
3455
+ "type": "string"
3456
+ }
3457
+ },
3458
+ "type": "object"
3459
+ }
3460
+ },
3461
+ "resourceCollection": [
3462
+ {
3463
+ "label": "Organization",
3464
+ "notify": true,
3465
+ "path": "managed/alpha_organization",
3466
+ "query": {
3467
+ "fields": [
3468
+ "name",
3469
+ "description"
3470
+ ],
3471
+ "queryFilter": "true",
3472
+ "sortKeys": []
3473
+ }
3474
+ }
3475
+ ],
3476
+ "reversePropertyName": "parent",
3477
+ "reverseRelationship": true,
3478
+ "type": "relationship",
3479
+ "validate": true
3480
+ },
3481
+ "policies": [],
3482
+ "returnByDefault": false,
3483
+ "searchable": false,
3484
+ "title": "Child Organizations",
3485
+ "type": "array",
3486
+ "userEditable": false,
3487
+ "viewable": false
3488
+ },
3489
+ "description": {
3490
+ "searchable": true,
3491
+ "title": "Description",
3492
+ "type": "string",
3493
+ "userEditable": true,
3494
+ "viewable": true
3495
+ },
3496
+ "members": {
3497
+ "items": {
3498
+ "notifySelf": false,
3499
+ "properties": {
3500
+ "_ref": {
3501
+ "type": "string"
3502
+ },
3503
+ "_refProperties": {
3504
+ "properties": {
3505
+ "_id": {
3506
+ "propName": "_id",
3507
+ "required": false,
3508
+ "type": "string"
3509
+ }
3510
+ },
3511
+ "type": "object"
3512
+ }
3513
+ },
3514
+ "resourceCollection": [
3515
+ {
3516
+ "label": "User",
3517
+ "notify": true,
3518
+ "path": "managed/alpha_user",
3519
+ "query": {
3520
+ "fields": [
3521
+ "userName",
3522
+ "givenName",
3523
+ "sn"
3524
+ ],
3525
+ "queryFilter": "true",
3526
+ "sortKeys": []
3527
+ }
3528
+ }
3529
+ ],
3530
+ "reversePropertyName": "memberOfOrg",
3531
+ "reverseRelationship": true,
3532
+ "type": "relationship",
3533
+ "validate": true
3534
+ },
3535
+ "returnByDefault": false,
3536
+ "searchable": false,
3537
+ "title": "Members",
3538
+ "type": "array",
3539
+ "userEditable": false,
3540
+ "viewable": true
3541
+ },
3542
+ "name": {
3543
+ "searchable": true,
3544
+ "title": "Name",
3545
+ "type": "string",
3546
+ "userEditable": true,
3547
+ "viewable": true
3548
+ },
3549
+ "ownerIDs": {
3550
+ "isVirtual": true,
3551
+ "items": {
3552
+ "title": "owner ids",
3553
+ "type": "string"
3554
+ },
3555
+ "queryConfig": {
3556
+ "flattenProperties": true,
3557
+ "referencedObjectFields": [
3558
+ "_id"
3559
+ ],
3560
+ "referencedRelationshipFields": [
3561
+ "owners"
3562
+ ]
3563
+ },
3564
+ "returnByDefault": true,
3565
+ "searchable": false,
3566
+ "title": "Owner user ids",
3567
+ "type": "array",
3568
+ "userEditable": false,
3569
+ "viewable": false
3570
+ },
3571
+ "owners": {
3572
+ "items": {
3573
+ "notifySelf": true,
3574
+ "properties": {
3575
+ "_ref": {
3576
+ "type": "string"
3577
+ },
3578
+ "_refProperties": {
3579
+ "properties": {
3580
+ "_id": {
3581
+ "propName": "_id",
3582
+ "required": false,
3583
+ "type": "string"
3584
+ }
3585
+ },
3586
+ "type": "object"
3587
+ }
3588
+ },
3589
+ "resourceCollection": [
3590
+ {
3591
+ "label": "User",
3592
+ "notify": false,
3593
+ "path": "managed/alpha_user",
3594
+ "query": {
3595
+ "fields": [
3596
+ "userName",
3597
+ "givenName",
3598
+ "sn"
3599
+ ],
3600
+ "queryFilter": "true",
3601
+ "sortKeys": []
3602
+ }
3603
+ }
3604
+ ],
3605
+ "reversePropertyName": "ownerOfOrg",
3606
+ "reverseRelationship": true,
3607
+ "type": "relationship",
3608
+ "validate": true
3609
+ },
3610
+ "notifyRelationships": [
3611
+ "children"
3612
+ ],
3613
+ "returnByDefault": false,
3614
+ "searchable": false,
3615
+ "title": "Owner",
3616
+ "type": "array",
3617
+ "userEditable": false,
3618
+ "viewable": true
3619
+ },
3620
+ "parent": {
3621
+ "description": "Parent Organization",
3622
+ "notifyRelationships": [
3623
+ "children",
3624
+ "members"
3625
+ ],
3626
+ "notifySelf": true,
3627
+ "properties": {
3628
+ "_ref": {
3629
+ "type": "string"
3630
+ },
3631
+ "_refProperties": {
3632
+ "properties": {
3633
+ "_id": {
3634
+ "propName": "_id",
3635
+ "required": false,
3636
+ "type": "string"
3637
+ }
3638
+ },
3639
+ "type": "object"
3640
+ }
3641
+ },
3642
+ "resourceCollection": [
3643
+ {
3644
+ "label": "Organization",
3645
+ "notify": false,
3646
+ "path": "managed/alpha_organization",
3647
+ "query": {
3648
+ "fields": [
3649
+ "name",
3650
+ "description"
3651
+ ],
3652
+ "queryFilter": "true",
3653
+ "sortKeys": []
3654
+ }
3655
+ }
3656
+ ],
3657
+ "returnByDefault": false,
3658
+ "reversePropertyName": "children",
3659
+ "reverseRelationship": true,
3660
+ "searchable": false,
3661
+ "title": "Parent Organization",
3662
+ "type": "relationship",
3663
+ "userEditable": false,
3664
+ "validate": true,
3665
+ "viewable": true
3666
+ },
3667
+ "parentAdminIDs": {
3668
+ "isVirtual": true,
3669
+ "items": {
3670
+ "title": "user ids of parent admins",
3671
+ "type": "string"
3672
+ },
3673
+ "queryConfig": {
3674
+ "flattenProperties": true,
3675
+ "referencedObjectFields": [
3676
+ "adminIDs",
3677
+ "parentAdminIDs"
3678
+ ],
3679
+ "referencedRelationshipFields": [
3680
+ "parent"
3681
+ ]
3682
+ },
3683
+ "returnByDefault": true,
3684
+ "searchable": false,
3685
+ "title": "user ids of parent admins",
3686
+ "type": "array",
3687
+ "userEditable": false,
3688
+ "viewable": false
3689
+ },
3690
+ "parentIDs": {
3691
+ "isVirtual": true,
3692
+ "items": {
3693
+ "title": "parent org ids",
3694
+ "type": "string"
3695
+ },
3696
+ "queryConfig": {
3697
+ "flattenProperties": true,
3698
+ "referencedObjectFields": [
3699
+ "_id",
3700
+ "parentIDs"
3701
+ ],
3702
+ "referencedRelationshipFields": [
3703
+ "parent"
3704
+ ]
3705
+ },
3706
+ "returnByDefault": true,
3707
+ "searchable": false,
3708
+ "title": "parent org ids",
3709
+ "type": "array",
3710
+ "userEditable": false,
3711
+ "viewable": false
3712
+ },
3713
+ "parentOwnerIDs": {
3714
+ "isVirtual": true,
3715
+ "items": {
3716
+ "title": "user ids of parent owners",
3717
+ "type": "string"
3718
+ },
3719
+ "queryConfig": {
3720
+ "flattenProperties": true,
3721
+ "referencedObjectFields": [
3722
+ "ownerIDs",
3723
+ "parentOwnerIDs"
3724
+ ],
3725
+ "referencedRelationshipFields": [
3726
+ "parent"
3727
+ ]
3728
+ },
3729
+ "returnByDefault": true,
3730
+ "searchable": false,
3731
+ "title": "user ids of parent owners",
3732
+ "type": "array",
3733
+ "userEditable": false,
3734
+ "viewable": false
3735
+ },
3736
+ "test": {
3737
+ "searchable": true,
3738
+ "title": "test",
3739
+ "type": "string",
3740
+ "userEditable": true,
3741
+ "viewable": true
3742
+ }
3743
+ },
3744
+ "required": [
3745
+ "name"
3746
+ ],
3747
+ "title": "Alpha realm - Organization",
3748
+ "type": "object"
3749
+ }
3750
+ },
3751
+ {
3752
+ "name": "bravo_organization",
3753
+ "schema": {
3754
+ "$schema": "http://forgerock.org/json-schema#",
3755
+ "description": "An organization or tenant, whose resources are managed by organizational admins.",
3756
+ "icon": "fa-building",
3757
+ "order": [
3758
+ "name",
3759
+ "description",
3760
+ "owners",
3761
+ "admins",
3762
+ "members",
3763
+ "parent",
3764
+ "children",
3765
+ "adminIDs",
3766
+ "ownerIDs",
3767
+ "parentAdminIDs",
3768
+ "parentOwnerIDs",
3769
+ "parentIDs"
3770
+ ],
3771
+ "properties": {
3772
+ "adminIDs": {
3773
+ "isVirtual": true,
3774
+ "items": {
3775
+ "title": "admin ids",
3776
+ "type": "string"
3777
+ },
3778
+ "queryConfig": {
3779
+ "flattenProperties": true,
3780
+ "referencedObjectFields": [
3781
+ "_id"
3782
+ ],
3783
+ "referencedRelationshipFields": [
3784
+ "admins"
3785
+ ]
3786
+ },
3787
+ "returnByDefault": true,
3788
+ "searchable": false,
3789
+ "title": "Admin user ids",
3790
+ "type": "array",
3791
+ "userEditable": false,
3792
+ "viewable": false
3793
+ },
3794
+ "admins": {
3795
+ "items": {
3796
+ "notifySelf": true,
3797
+ "properties": {
3798
+ "_ref": {
3799
+ "type": "string"
3800
+ },
3801
+ "_refProperties": {
3802
+ "properties": {
3803
+ "_id": {
3804
+ "propName": "_id",
3805
+ "required": false,
3806
+ "type": "string"
3807
+ }
3808
+ },
3809
+ "type": "object"
3810
+ }
3811
+ },
3812
+ "resourceCollection": [
3813
+ {
3814
+ "label": "User",
3815
+ "notify": false,
3816
+ "path": "managed/bravo_user",
3817
+ "query": {
3818
+ "fields": [
3819
+ "userName",
3820
+ "givenName",
3821
+ "sn"
3822
+ ],
3823
+ "queryFilter": "true",
3824
+ "sortKeys": []
3825
+ }
3826
+ }
3827
+ ],
3828
+ "reversePropertyName": "adminOfOrg",
3829
+ "reverseRelationship": true,
3830
+ "type": "relationship",
3831
+ "validate": true
3832
+ },
3833
+ "notifyRelationships": [
3834
+ "children"
3835
+ ],
3836
+ "returnByDefault": false,
3837
+ "searchable": false,
3838
+ "title": "Administrators",
3839
+ "type": "array",
3840
+ "userEditable": false,
3841
+ "viewable": true
3842
+ },
3843
+ "children": {
3844
+ "description": "Child Organizations",
3845
+ "items": {
3846
+ "notifySelf": true,
3847
+ "properties": {
3848
+ "_ref": {
3849
+ "type": "string"
3850
+ },
3851
+ "_refProperties": {
3852
+ "properties": {
3853
+ "_id": {
3854
+ "propName": "_id",
3855
+ "required": false,
3856
+ "type": "string"
3857
+ }
3858
+ },
3859
+ "type": "object"
3860
+ }
3861
+ },
3862
+ "resourceCollection": [
3863
+ {
3864
+ "label": "Organization",
3865
+ "notify": true,
3866
+ "path": "managed/bravo_organization",
3867
+ "query": {
3868
+ "fields": [
3869
+ "name",
3870
+ "description"
3871
+ ],
3872
+ "queryFilter": "true",
3873
+ "sortKeys": []
3874
+ }
3875
+ }
3876
+ ],
3877
+ "reversePropertyName": "parent",
3878
+ "reverseRelationship": true,
3879
+ "type": "relationship",
3880
+ "validate": true
3881
+ },
3882
+ "policies": [],
3883
+ "returnByDefault": false,
3884
+ "searchable": false,
3885
+ "title": "Child Organizations",
3886
+ "type": "array",
3887
+ "userEditable": false,
3888
+ "viewable": false
3889
+ },
3890
+ "description": {
3891
+ "searchable": true,
3892
+ "title": "Description",
3893
+ "type": "string",
3894
+ "userEditable": true,
3895
+ "viewable": true
3896
+ },
3897
+ "members": {
3898
+ "items": {
3899
+ "notifySelf": false,
3900
+ "properties": {
3901
+ "_ref": {
3902
+ "type": "string"
3903
+ },
3904
+ "_refProperties": {
3905
+ "properties": {
3906
+ "_id": {
3907
+ "propName": "_id",
3908
+ "required": false,
3909
+ "type": "string"
3910
+ }
3911
+ },
3912
+ "type": "object"
3913
+ }
3914
+ },
3915
+ "resourceCollection": [
3916
+ {
3917
+ "label": "User",
3918
+ "notify": true,
3919
+ "path": "managed/bravo_user",
3920
+ "query": {
3921
+ "fields": [
3922
+ "userName",
3923
+ "givenName",
3924
+ "sn"
3925
+ ],
3926
+ "queryFilter": "true",
3927
+ "sortKeys": []
3928
+ }
3929
+ }
3930
+ ],
3931
+ "reversePropertyName": "memberOfOrg",
3932
+ "reverseRelationship": true,
3933
+ "type": "relationship",
3934
+ "validate": true
3935
+ },
3936
+ "returnByDefault": false,
3937
+ "searchable": false,
3938
+ "title": "Members",
3939
+ "type": "array",
3940
+ "userEditable": false,
3941
+ "viewable": true
3942
+ },
3943
+ "name": {
3944
+ "searchable": true,
3945
+ "title": "Name",
3946
+ "type": "string",
3947
+ "userEditable": true,
3948
+ "viewable": true
3949
+ },
3950
+ "ownerIDs": {
3951
+ "isVirtual": true,
3952
+ "items": {
3953
+ "title": "owner ids",
3954
+ "type": "string"
3955
+ },
3956
+ "queryConfig": {
3957
+ "flattenProperties": true,
3958
+ "referencedObjectFields": [
3959
+ "_id"
3960
+ ],
3961
+ "referencedRelationshipFields": [
3962
+ "owners"
3963
+ ]
3964
+ },
3965
+ "returnByDefault": true,
3966
+ "searchable": false,
3967
+ "title": "Owner user ids",
3968
+ "type": "array",
3969
+ "userEditable": false,
3970
+ "viewable": false
3971
+ },
3972
+ "owners": {
3973
+ "items": {
3974
+ "notifySelf": true,
3975
+ "properties": {
3976
+ "_ref": {
3977
+ "type": "string"
3978
+ },
3979
+ "_refProperties": {
3980
+ "properties": {
3981
+ "_id": {
3982
+ "propName": "_id",
3983
+ "required": false,
3984
+ "type": "string"
3985
+ }
3986
+ },
3987
+ "type": "object"
3988
+ }
3989
+ },
3990
+ "resourceCollection": [
3991
+ {
3992
+ "label": "User",
3993
+ "notify": false,
3994
+ "path": "managed/bravo_user",
3995
+ "query": {
3996
+ "fields": [
3997
+ "userName",
3998
+ "givenName",
3999
+ "sn"
4000
+ ],
4001
+ "queryFilter": "true",
4002
+ "sortKeys": []
4003
+ }
4004
+ }
4005
+ ],
4006
+ "reversePropertyName": "ownerOfOrg",
4007
+ "reverseRelationship": true,
4008
+ "type": "relationship",
4009
+ "validate": true
4010
+ },
4011
+ "notifyRelationships": [
4012
+ "children"
4013
+ ],
4014
+ "returnByDefault": false,
4015
+ "searchable": false,
4016
+ "title": "Owner",
4017
+ "type": "array",
4018
+ "userEditable": false,
4019
+ "viewable": true
4020
+ },
4021
+ "parent": {
4022
+ "description": "Parent Organization",
4023
+ "notifyRelationships": [
4024
+ "children",
4025
+ "members"
4026
+ ],
4027
+ "notifySelf": true,
4028
+ "properties": {
4029
+ "_ref": {
4030
+ "type": "string"
4031
+ },
4032
+ "_refProperties": {
4033
+ "properties": {
4034
+ "_id": {
4035
+ "propName": "_id",
4036
+ "required": false,
4037
+ "type": "string"
4038
+ }
4039
+ },
4040
+ "type": "object"
4041
+ }
4042
+ },
4043
+ "resourceCollection": [
4044
+ {
4045
+ "label": "Organization",
4046
+ "notify": false,
4047
+ "path": "managed/bravo_organization",
4048
+ "query": {
4049
+ "fields": [
4050
+ "name",
4051
+ "description"
4052
+ ],
4053
+ "queryFilter": "true",
4054
+ "sortKeys": []
4055
+ }
4056
+ }
4057
+ ],
4058
+ "returnByDefault": false,
4059
+ "reversePropertyName": "children",
4060
+ "reverseRelationship": true,
4061
+ "searchable": false,
4062
+ "title": "Parent Organization",
4063
+ "type": "relationship",
4064
+ "userEditable": false,
4065
+ "validate": true,
4066
+ "viewable": true
4067
+ },
4068
+ "parentAdminIDs": {
4069
+ "isVirtual": true,
4070
+ "items": {
4071
+ "title": "user ids of parent admins",
4072
+ "type": "string"
4073
+ },
4074
+ "queryConfig": {
4075
+ "flattenProperties": true,
4076
+ "referencedObjectFields": [
4077
+ "adminIDs",
4078
+ "parentAdminIDs"
4079
+ ],
4080
+ "referencedRelationshipFields": [
4081
+ "parent"
4082
+ ]
4083
+ },
4084
+ "returnByDefault": true,
4085
+ "searchable": false,
4086
+ "title": "user ids of parent admins",
4087
+ "type": "array",
4088
+ "userEditable": false,
4089
+ "viewable": false
4090
+ },
4091
+ "parentIDs": {
4092
+ "isVirtual": true,
4093
+ "items": {
4094
+ "title": "parent org ids",
4095
+ "type": "string"
4096
+ },
4097
+ "queryConfig": {
4098
+ "flattenProperties": true,
4099
+ "referencedObjectFields": [
4100
+ "_id",
4101
+ "parentIDs"
4102
+ ],
4103
+ "referencedRelationshipFields": [
4104
+ "parent"
4105
+ ]
4106
+ },
4107
+ "returnByDefault": true,
4108
+ "searchable": false,
4109
+ "title": "parent org ids",
4110
+ "type": "array",
4111
+ "userEditable": false,
4112
+ "viewable": false
4113
+ },
4114
+ "parentOwnerIDs": {
4115
+ "isVirtual": true,
4116
+ "items": {
4117
+ "title": "user ids of parent owners",
4118
+ "type": "string"
4119
+ },
4120
+ "queryConfig": {
4121
+ "flattenProperties": true,
4122
+ "referencedObjectFields": [
4123
+ "ownerIDs",
4124
+ "parentOwnerIDs"
4125
+ ],
4126
+ "referencedRelationshipFields": [
4127
+ "parent"
4128
+ ]
4129
+ },
4130
+ "returnByDefault": true,
4131
+ "searchable": false,
4132
+ "title": "user ids of parent owners",
4133
+ "type": "array",
4134
+ "userEditable": false,
4135
+ "viewable": false
4136
+ }
4137
+ },
4138
+ "required": [
4139
+ "name"
4140
+ ],
4141
+ "title": "Bravo realm - Organization",
4142
+ "type": "object"
4143
+ }
4144
+ },
4145
+ {
4146
+ "name": "alpha_group",
4147
+ "schema": {
4148
+ "$schema": "http://forgerock.org/json-schema#",
4149
+ "icon": "fa-group",
4150
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Group",
4151
+ "mat-icon": "group",
4152
+ "order": [
4153
+ "_id",
4154
+ "name",
4155
+ "description",
4156
+ "condition",
4157
+ "members"
4158
+ ],
4159
+ "properties": {
4160
+ "_id": {
4161
+ "description": "Group ID",
4162
+ "isPersonal": false,
4163
+ "policies": [
4164
+ {
4165
+ "params": {
4166
+ "propertyName": "name"
4167
+ },
4168
+ "policyId": "id-must-equal-property"
4169
+ }
4170
+ ],
4171
+ "searchable": false,
4172
+ "type": "string",
4173
+ "usageDescription": "",
4174
+ "userEditable": false,
4175
+ "viewable": false
4176
+ },
4177
+ "condition": {
4178
+ "description": "A filter for conditionally assigned members",
4179
+ "isConditional": true,
4180
+ "policies": [
4181
+ {
4182
+ "policyId": "valid-query-filter"
4183
+ }
4184
+ ],
4185
+ "searchable": false,
4186
+ "title": "Condition",
4187
+ "type": "string",
4188
+ "viewable": false
4189
+ },
4190
+ "description": {
4191
+ "description": "Group Description",
4192
+ "searchable": true,
4193
+ "title": "Description",
4194
+ "type": "string",
4195
+ "userEditable": false,
4196
+ "viewable": true
4197
+ },
4198
+ "members": {
4199
+ "description": "Group Members",
4200
+ "items": {
4201
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Group:members:items",
4202
+ "properties": {
4203
+ "_ref": {
4204
+ "description": "References a relationship from a managed object",
4205
+ "type": "string"
4206
+ },
4207
+ "_refProperties": {
4208
+ "description": "Supports metadata within the relationship",
4209
+ "properties": {
4210
+ "_grantType": {
4211
+ "description": "Grant Type",
4212
+ "label": "Grant Type",
4213
+ "type": "string"
4214
+ },
4215
+ "_id": {
4216
+ "description": "_refProperties object ID",
4217
+ "type": "string"
4218
+ }
4219
+ },
4220
+ "title": "Group Members Items _refProperties",
4221
+ "type": "object"
4222
+ }
4223
+ },
4224
+ "resourceCollection": [
4225
+ {
4226
+ "conditionalAssociation": true,
4227
+ "label": "User",
4228
+ "notify": true,
4229
+ "path": "managed/alpha_user",
4230
+ "query": {
4231
+ "fields": [
4232
+ "userName",
4233
+ "givenName",
4234
+ "sn"
4235
+ ],
4236
+ "queryFilter": "true"
4237
+ }
4238
+ }
4239
+ ],
4240
+ "reversePropertyName": "groups",
4241
+ "reverseRelationship": true,
4242
+ "title": "Group Members Items",
4243
+ "type": "relationship",
4244
+ "validate": true
4245
+ },
4246
+ "policies": [],
4247
+ "returnByDefault": false,
4248
+ "searchable": false,
4249
+ "title": "Members",
4250
+ "type": "array",
4251
+ "userEditable": false,
4252
+ "viewable": true
4253
+ },
4254
+ "name": {
4255
+ "description": "Group Name",
4256
+ "policies": [
4257
+ {
4258
+ "policyId": "required"
4259
+ },
4260
+ {
4261
+ "params": {
4262
+ "forbiddenChars": [
4263
+ "/*"
4264
+ ]
4265
+ },
4266
+ "policyId": "cannot-contain-characters"
4267
+ }
4268
+ ],
4269
+ "searchable": false,
4270
+ "title": "Name",
4271
+ "type": "string",
4272
+ "viewable": true
4273
+ }
4274
+ },
4275
+ "required": [
4276
+ "name"
4277
+ ],
4278
+ "title": "Alpha realm - Group",
4279
+ "viewable": true
4280
+ }
4281
+ },
4282
+ {
4283
+ "name": "bravo_group",
4284
+ "schema": {
4285
+ "$schema": "http://forgerock.org/json-schema#",
4286
+ "icon": "fa-group",
4287
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Group",
4288
+ "mat-icon": "group",
4289
+ "order": [
4290
+ "_id",
4291
+ "name",
4292
+ "description",
4293
+ "condition",
4294
+ "members"
4295
+ ],
4296
+ "properties": {
4297
+ "_id": {
4298
+ "description": "Group ID",
4299
+ "isPersonal": false,
4300
+ "policies": [
4301
+ {
4302
+ "params": {
4303
+ "propertyName": "name"
4304
+ },
4305
+ "policyId": "id-must-equal-property"
4306
+ }
4307
+ ],
4308
+ "searchable": false,
4309
+ "type": "string",
4310
+ "usageDescription": "",
4311
+ "userEditable": false,
4312
+ "viewable": false
4313
+ },
4314
+ "condition": {
4315
+ "description": "A filter for conditionally assigned members",
4316
+ "isConditional": true,
4317
+ "policies": [
4318
+ {
4319
+ "policyId": "valid-query-filter"
4320
+ }
4321
+ ],
4322
+ "searchable": false,
4323
+ "title": "Condition",
4324
+ "type": "string",
4325
+ "viewable": false
4326
+ },
4327
+ "description": {
4328
+ "description": "Group Description",
4329
+ "searchable": true,
4330
+ "title": "Description",
4331
+ "type": "string",
4332
+ "userEditable": false,
4333
+ "viewable": true
4334
+ },
4335
+ "members": {
4336
+ "description": "Group Members",
4337
+ "items": {
4338
+ "id": "urn:jsonschema:org:forgerock:openidm:managed:api:Group:members:items",
4339
+ "properties": {
4340
+ "_ref": {
4341
+ "description": "References a relationship from a managed object",
4342
+ "type": "string"
4343
+ },
4344
+ "_refProperties": {
4345
+ "description": "Supports metadata within the relationship",
4346
+ "properties": {
4347
+ "_grantType": {
4348
+ "description": "Grant Type",
4349
+ "label": "Grant Type",
4350
+ "type": "string"
4351
+ },
4352
+ "_id": {
4353
+ "description": "_refProperties object ID",
4354
+ "type": "string"
4355
+ }
4356
+ },
4357
+ "title": "Group Members Items _refProperties",
4358
+ "type": "object"
4359
+ }
4360
+ },
4361
+ "resourceCollection": [
4362
+ {
4363
+ "conditionalAssociation": true,
4364
+ "label": "User",
4365
+ "notify": true,
4366
+ "path": "managed/bravo_user",
4367
+ "query": {
4368
+ "fields": [
4369
+ "userName",
4370
+ "givenName",
4371
+ "sn"
4372
+ ],
4373
+ "queryFilter": "true"
4374
+ }
4375
+ }
4376
+ ],
4377
+ "reversePropertyName": "groups",
4378
+ "reverseRelationship": true,
4379
+ "title": "Group Members Items",
4380
+ "type": "relationship",
4381
+ "validate": true
4382
+ },
4383
+ "policies": [],
4384
+ "returnByDefault": false,
4385
+ "searchable": false,
4386
+ "title": "Members",
4387
+ "type": "array",
4388
+ "userEditable": false,
4389
+ "viewable": true
4390
+ },
4391
+ "name": {
4392
+ "description": "Group Name",
4393
+ "policies": [
4394
+ {
4395
+ "policyId": "required"
4396
+ },
4397
+ {
4398
+ "params": {
4399
+ "forbiddenChars": [
4400
+ "/*"
4401
+ ]
4402
+ },
4403
+ "policyId": "cannot-contain-characters"
4404
+ }
4405
+ ],
4406
+ "searchable": false,
4407
+ "title": "Name",
4408
+ "type": "string",
4409
+ "viewable": true
4410
+ }
4411
+ },
4412
+ "required": [
4413
+ "name"
4414
+ ],
4415
+ "title": "Bravo realm - Group",
4416
+ "viewable": true
4417
+ }
4418
+ }
4419
+ ]
4420
+ }