Hi Will,
Here is a quick steps to release this attribute if you don't want to update.
Actually that attribute already exist but its **gluuAttributeOrigin** is set to _inetOrgPerson_.
To make it visible in attributes list, you have to changed that to _gluuCustomPerson_ and add that attribute to _gluuCustomPerson_ class.
1. **Change gluuAttributeOrigin value from inetOrgPerson to gluuCustomPerson.**
Login into Gluu container, create a ldif file named _updateEmployeeNumber.ldif_ and paste the bellow code in that file.
```
dn: inum=@!8635.04CD.3A7D.97F1!0001!C278.7D00!0005!D0C9,ou=attributes,o=@!8635.04CD.3A7D.97F1!0001!C278.7D00,o=gluu
changetype: modify
replace: gluuAttributeOrigin
gluuAttributeOrigin: gluuCustomPerson
```
Run this bellow command to apply your changes.
```
opt/opendj/bin/ldapmodify -p 1636 -Z -X -D "cn=directory manager,o=gluu" -w 'yourPassword' -f updateEmployeeNumber.ldiff
```
_NB: You may modify the rootDN to match your own._
You will now be able to see that attribute on attributes list.
2. **Add _employeeNumber_ to _gluuCustomPerson_ class.**
Open this file **/opt/gluu/schema/openldap/custom.schema** and link the attribute as describe below.
```
objectclass ( 1.3.6.1.4.1.48710.1.4.101 NAME 'gluuCustomPerson'
SUP ( top )
AUXILIARY
MAY ( telephoneNumber $ mobile $ employeeNumber )
X-ORIGIN 'Gluu - Custom persom objectclass' )
```
Note that employeeNumber is added.
Apply changes:
```
#service solserver stop
#/opt/symas/bin/slaptest -f /opt/symas/etc/openldap/slapd.conf
#service solserver start
```
That it.