Skip to content

Commit

Permalink
Lower-case UUID format to uuid (#3789)
Browse files Browse the repository at this point in the history
Normalise the UUID format string to 'uuid' so as to conform with all other specs
  • Loading branch information
ifross89 authored and sarangan12 committed Sep 6, 2018
1 parent 5c3eebf commit 25464bf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,19 +370,19 @@
"tenantId": {
"type": "string",
"readOnly": true,
"format": "UUID",
"format": "uuid",
"description": "The id of the tenant which the identity belongs to."
},
"principalId": {
"type": "string",
"readOnly": true,
"format": "UUID",
"format": "uuid",
"description": "The id of the service principal object associated with the created identity."
},
"clientId": {
"type": "string",
"readOnly": true,
"format": "UUID",
"format": "uuid",
"description": "The id of the app associated with the identity. This is a random generated UUID by MSI."
},
"clientSecretUrl": {
Expand Down

0 comments on commit 25464bf

Please sign in to comment.