roleCreator Data Type

RoleCreator encapsulates all the information needed to create a new Role in the system. A Role is associated to an Account and a set of Permissions.

Namespace
http://eurotech.com/edc/2.0
Schema
edc.xsd
Properties
name data type type namespace min/max occurs constraints wrapped by description
accountId long element edc 1/1 required    
name string element edc 0/1      
tags string element edc 0/1      
permission list of string element edc 0/unbounded   permissions  

Example

<roleCreator xmlns="http://eurotech.com/edc/2.0">
  <accountId>...</accountId>
  <name>...</name>
  <tags>...</tags>
  <permissions>
    <permission>...</permission>
  </permissions>
</roleCreator>