Fix some errors.
This commit is contained in:
parent
1ae04658ef
commit
5cc2bdbc71
2 changed files with 10 additions and 12 deletions
|
@ -226,22 +226,22 @@ class ConvertToOrganization(ApiResource):
|
|||
'type': 'object',
|
||||
'description': 'Information required to convert a user to an organization.',
|
||||
'required': [
|
||||
'username',
|
||||
'password',
|
||||
'email',
|
||||
'adminUser',
|
||||
'adminPassword',
|
||||
'plan',
|
||||
],
|
||||
'properties': {
|
||||
'username': {
|
||||
'adminUser': {
|
||||
'type': 'string',
|
||||
'description': 'The user\'s username',
|
||||
'description': 'The user who will become an org admin\'s username',
|
||||
},
|
||||
'password': {
|
||||
'adminPassword': {
|
||||
'type': 'string',
|
||||
'description': 'The user\'s password',
|
||||
'description': 'The user who will become an org admin\'s password',
|
||||
},
|
||||
'email': {
|
||||
'plan': {
|
||||
'type': 'string',
|
||||
'description': 'The user\'s email address',
|
||||
'description': 'The plan to which the organizatino should be subscribed',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Reference in a new issue