userResponse element

Type: userResponse
Namespace: (default namespace)
XML Schema: ns0.xsd

User response

Example XML

<?xml version="1.0" encoding="UTF-8"?> <userResponse> <user> <sowprogId> <id>...</id> <UUID>...</UUID> <version>...</version> <creationDate>...</creationDate> <modificationDate>...</modificationDate> </sowprogId> <link> <href>...</href> <method>...</method> <rel>...</rel> </link> <link> <!--...--> </link> <!--...more "link" elements...--> <email>...</email> <status>...</status> <role>...</role> </user> </userResponse>

Example JSON

{ "user" : { "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "email" : "...", "status" : "PENDING_VALIDATION", "role" : "ADMINISTRATOR", "sowprogId" : { "id" : "...", "UUID" : "...", "version" : ..., "creationDate" : ..., "modificationDate" : ... } } }