Skip to content

Commit

Permalink
14052 Update max length of party organization name to 150 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
argush3 authored Oct 28, 2022
1 parent 44ea440 commit 10bc550
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/registry_schemas/example_data/schema_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@
'firstName': '',
'lastName': '',
'middleName': '',
'organizationName': 'Xyz Inc.',
'organizationName': 'Xyz some super super super super super super long business 12345678 name Inc.',
'partyType': 'organization'
},
'mailingAddress': {
Expand Down
2 changes: 1 addition & 1 deletion src/registry_schemas/schemas/party.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"organizationName": {
"type": "string",
"maxLength": 50
"maxLength": 150
},
"identifier": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/registry_schemas/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
Development release segment: .devN
"""

__version__ = '2.15.34' # pylint: disable=invalid-name
__version__ = '2.15.35' # pylint: disable=invalid-name

0 comments on commit 10bc550

Please sign in to comment.