Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
Version 1
Current »
Database Name | Database Type | Collection Name |
---|
core_provision | MongoDB | oauth_urac |
Record Explanation
Field Name | Type | Mandatory | Unique | Indexed | Description |
---|
_id | Mongo ID | YES | YES | YES | Mongo Record ID |
userId | String | YES | YES | YES | The oAuth User ID |
password | Hash | YES | NO | NO | The oAuth User Password |
tId | Mongo ID | YES | NO | YES | The tenant ID this oAuth User belongs to |
keys | Null | NO | NO | NO | N/A |
Sample
let data = {
"_id": ObjectId('54f5c18fb348958b6c3c7fd3'),
"userId": "oauthuser_tenant1",
"password": "%password%",
"tId": ObjectId('54ee2150b7a669fc22b7f6b9'),
"keys": null
};
Add Comment