-
Notifications
You must be signed in to change notification settings - Fork 448
Closed
Labels
Description
The example shown is incorrect as it contains invalid configuration keys for every attribute other than company. The problem is that when using the example configuration, metadata won't be generated properly.
Here's an example of correct configuration:
'contact_person': [
{
'given_name': 'Fox',
'sur_name': 'Mulder',
'company': 'The X-Files',
'email_address': ['fmulder@xfiles.com'],
'telephone_number': ['+1 234 567 89'],
# accepted values: technical, support, administrative, billing and other
'contact_type': 'technical',
},
]I'll send a PR with the corrected example withing a day or two, and I will expand upon the current description.