Skip to content

Commit a4a158b

Browse files
authored
Merge pull request #804 from bbiggerr/account-update-invalid-characters
Added restricted characters to Account Update
2 parents 07a81bc + ca35941 commit a4a158b

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

openapi.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18815,7 +18815,10 @@ components:
1881518815
example: 11/2022
1881618816
company:
1881718817
type: string
18818-
description: The company name associated with this Account.
18818+
description: |
18819+
The company name associated with this Account.
18820+
18821+
Must not include any of the following characters: `<` `>` `(` `)` `"` `=`
1881918822
maxLength: 128
1882018823
example: Linode LLC
1882118824
country:
@@ -18831,13 +18834,19 @@ components:
1883118834
x-linode-cli-display: 3
1883218835
first_name:
1883318836
type: string
18834-
description: The first name of the person associated with this Account.
18837+
description: |
18838+
The first name of the person associated with this Account.
18839+
18840+
Must not include any of the following characters: `<` `>` `(` `)` `"` `=`
1883518841
maxLength: 50
1883618842
example: John
1883718843
x-linode-cli-display: 1
1883818844
last_name:
1883918845
type: string
18840-
description: The last name of the person associated with this Account.
18846+
description: |
18847+
The last name of the person associated with this Account.
18848+
18849+
Must not include any of the following characters: `<` `>` `(` `)` `"` `=`
1884118850
maxLength: 50
1884218851
example: Smith
1884318852
x-linode-cli-display: 2

0 commit comments

Comments
 (0)