UNPKG

opendj-rest-wrapper

Version:

JavaScript library for OpenDJ REST API to access directory data as JSON resources over HTTP

29 lines (26 loc) 546 B
'use strict'; var json = { '_id': 'newuser', '_rev': '000000009b8b73ba', '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-08T03:56:31Z', }, 'manager': [{ '_id': 'kvaughan', 'displayName': 'Kirsten Vaughan', }], }; module.exports = json;