Currently I am working on a .Net Web Application and using oxd-server.
As per the [OXD Server Protocol Get User Info](https://gluu.org/docs/oxd/protocol/#get-user-info) document. The response type for Get-User-Info is below.
```
{
"status":"ok",
"data":{
"claims":{
"sub": ["248289761001"],
"name": ["Jane Doe"],
"given_name": ["Jane"],
"family_name": ["Doe"],
"preferred_username": ["j.doe"],
"email": ["janedoe@example.com"],
"picture": ["http://example.com/janedoe/me.jpg"]
}
}
}
```
And I am getting some additional fields like profile, gender, locale etc which are not mentioned in the document. I would like to know if these fields are also part of response type in oxd-server or the response is directly from OP provider ? Is there any other fields which are part of Response but not documented in [OXD Server Protocol Get User Info](https://gluu.org/docs/oxd/protocol/#get-user-info) document
Another question why I am not seeing email field in the Response Json
FYI.. I am using google as OP
```
{
"status": "ok",
"data": {
"claims": {
"sub": [ "114993941428991624747" ],
"gender": [ "other" ],
"profile": [ "https://plus.google.com/114993941428991624747" ],
"name": [ "Jajati Badu" ],
"given_name": [ "Jajati" ],
"locale": [ "en" ],
"family_name": [ "Badu" ],
"picture": [ "https://lh3.googleusercontent.com/-WI3w_-6C6sY/AAAAAAAAAAI/AAAAAAAAAAA/T4BhuxtUusk/photo.jpg" ]
}
}
}
```