Skip to content

Commit fe46e93

Browse files
committed
Last round of updates
1 parent fbcbfa7 commit fe46e93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure/Guidelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ Some customer-provided path segment values may be compared case-insensitivity if
7676

7777
:white_check_mark: **DO** ensure proper casing when returning a URL in an HTTP response header value or inside a JSON response body
7878

79-
:ballot_box_with_check: **YOU SHOULD** restrict the characters in service-defined path segments to `0-9 A-Z a-z - . _ ~`, with `:` allowed only as described below to designate an action operation.
79+
:white_check_mark: **DO** restrict the characters in service-defined path segments to `0-9 A-Z a-z - . _ ~`, with `:` allowed only as described below to designate an action operation.
8080

81-
:ballot_box_with_check: **YOU SHOULD** restrict the characters allowed in path parameters to `0-9 A-Z a-z - . _ ~` (do not allow `:`).
81+
:ballot_box_with_check: **YOU SHOULD** restrict the characters allowed in user-specified path segements (i.e. path parameters values) to `0-9 A-Z a-z - . _ ~` (do not allow `:`).
8282

8383
:ballot_box_with_check: **YOU SHOULD** keep URLs readable; if possible, avoid UUIDs & %-encoding (ex: Cádiz is %-encoded as C%C3%A1diz)
8484

@@ -240,7 +240,7 @@ Because of this, required fields can only be introduced in the 1st version of a
240240

241241
:white_check_mark: **DO** treat JSON field names with case-sensitivity.
242242

243-
:white_check_mark: **DO** treat JSON field values with case-sensitivity. There may be some exceptions but avoid if at all possible.
243+
:white_check_mark: **DO** treat JSON field values with case-sensitivity. There may be some exceptions (e.g. GUIDs) but avoid if at all possible.
244244

245245
:white_check_mark: **DO** use GET for resource retrieval and return JSON in the response body
246246

0 commit comments

Comments
 (0)