Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 441 Bytes

userProfileDoc.md

File metadata and controls

19 lines (14 loc) · 441 Bytes

User Profile Document Schema

The UserProfiles collection holds profile documents for users.
The profile document currently has the following schema:

{
    "_id": ObjectId, // Auto-generated
    "user": "string",

    // The default URL to redirect clients to if an target for the requested company and job ID could not be found
    "targetURL": "string", 


    // Optional:
    "name": "string",
    "email": "string"
}