The Create new Group operation creates a new group in Keycloak. The data is defined in the input XML expected by the adapter.
Input XML
<?xml version="1.0" encoding="UTF-8"?>
<Group>
<Name></Name>
<Attributes>
<Attribute>
<Name></Name>
<Values>
<Value></Value>
</Values>
</Attribute>
</Attributes>
</Group>
Group
|
Element |
Description |
Possible values |
|---|---|---|
|
|
Group definition |
The element contains the following elements:
|
|
|
Name of the group |
Any string |
|
|
Personalized, configurable attributes |
The element contains the following elements:
|
Attributes
|
Element |
Description |
|
|---|---|---|
|
|
Personalized, configurable attributes |
The element contains the following elements:
|
|
|
Personalized, configurable attribute |
The element contains the following elements:
|
|
|
Attribute name |
Any string |
|
|
Attribute values |
The element contains the following elements:
|
|
|
Attribute value |
Any string |
XSD
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="Group">
<xs:complexType>
<xs:sequence>
<xs:element ref="Id"/>
<xs:element ref="Name"/>
<xs:element ref="Path"/>
<xs:element ref="Attributes"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Id" type="xs:string"/>
<xs:element name="Path" type="xs:string"/>
<xs:element name="Attributes">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="Attribute"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Attribute">
<xs:complexType>
<xs:sequence>
<xs:element ref="Name"/>
<xs:element ref="Values"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Values">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="Value"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Value" type="xs:NCName"/>
<xs:element name="Name" type="xs:NCName"/>
</xs:schema>
Examples
Input
<?xml version="1.0" encoding="UTF-8"?>
<Group>
<Name>Customer</Name>
<Attributes>
<Attribute>
<Name>Company</Name>
<Values>
<Value>SoftProject</Value>
</Values>
</Attribute>
</Attributes>
</Group>