Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Database Information

...

Database NameDatabase TypeCollection Name
core_provisionMongoDBoauth_urac


Record Explanation

...

Field NameTypeMandatoryUniqueIndexedDescription
_idMongo IDYESYESYESMongo Record ID
userIdStringYESYESYESThe oAuth User ID
passwordHashYESNONOThe oAuth User Password
tIdMongo IDYESNOYESThe tenant ID this oAuth User belongs to
keysNullNONONON/A


Sample

...

Code Block
languagejs
titleoAuth User Record Sample
let data = {
	"_id": ObjectId('54f5c18fb348958b6c3c7fd3'),
	"userId": "oauthuser_tenant1",
	"password": "%password%",
	"tId": ObjectId('54ee2150b7a669fc22b7f6b9'),
	"keys": null
};

...