Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tutorial:dev:scim_form_value [2019/06/18 19:52]
tomiskar [SCIM module - save extended form value]
tutorial:dev:scim_form_value [2020/04/14 11:13] (current)
tomiskar [02 Save form values]
Line 19: Line 19:
 ===== 01 Read form definition ===== ===== 01 Read form definition =====
  
-The first thing wee need to now, which extended attributes are available for given resources. We use ''FormDefinition'' resource => form definition can be found by type (~definition's entity type owner. IdM entity name has to be used, extended attributes are CzechIdM specific) and code (~definition name):+The first thing ee need to now, which extended attributes are available for given resources. We'll use ''FormDefinition'' resource => form definition can be found by type (~definition's entity type owner. IdM entity name has to be used, extended attributes are CzechIdM specific) and code (~definition name):
  
 <code bash> <code bash>
Line 33: Line 33:
     "schemas":     "schemas":
       "urn:ietf:params:scim:schemas:core:2.0:User",        "urn:ietf:params:scim:schemas:core:2.0:User", 
-      "urn:ietf:params:scim:schemas:CzechIdM:8.1:Form" +      "urn:ietf:params:scim:schemas:CzechIdM:1.0:Form" 
      ],       ], 
     "userName": "scimTwo",      "userName": "scimTwo", 
-    "urn:ietf:params:scim:schemas:CzechIdM:8.1:Form":+    "urn:ietf:params:scim:schemas:CzechIdM:1.0:Form":
     "forms" : [{      "forms" : [{ 
     "code": "default",      "code": "default", 
  • by tomiskar