opendj-rest-wrapper
Version:
JavaScript library for OpenDJ REST API to access directory data as JSON resources over HTTP
21 lines (18 loc) • 370 B
JavaScript
;
var json = {
'_id': 'newuser',
'contactInformation': {
'telephoneNumber': '+1 408 555 1212',
'emailAddress': 'newuser@example.com',
},
'name': {
'familyName': 'New',
'givenName': 'User',
},
'displayName': 'New User',
'manager': [{
'_id': 'kvaughan',
'displayName': 'Kirsten Vaughan',
}],
};
module.exports = json;