opendj-rest-wrapper
Version:
JavaScript library for OpenDJ REST API to access directory data as JSON resources over HTTP
27 lines (24 loc) • 537 B
JavaScript
;
var json = {
'_id': 'newuser',
'_rev': '0000000064f07357',
'schemas': ['urn:scim:schemas:core:1.0'],
'userName': 'newuser@example.com',
'displayName': 'New User',
'name': {
'givenName': 'User',
'familyName': 'New',
},
'contactInformation': {
'telephoneNumber': '+1 408 555 1212',
'emailAddress': 'newuser@example.com',
},
'meta': {
'created': '2017-03-08T02:23:01Z',
},
'manager': [{
'_id': 'kvaughan',
'displayName': 'Kirsten Vaughan',
}],
};
module.exports = json;