Skip to content

Commit

Permalink
Merge pull request #3914 from zowe/bugfix/v2/string-null-for-dname
Browse files Browse the repository at this point in the history
Tolerate nulls in zowe.setup.certificate.dname
  • Loading branch information
MarkAckert authored Jul 15, 2024
2 parents 9dfafc8 + 1b6ab6e commit 32cf9d6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions schemas/zowe-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,31 +227,31 @@
"description": "Certificate distinguish name",
"properties": {
"caCommonName": {
"type": "string",
"type": [ "string", "null" ],
"description": "Common name of certificate authority generated by Zowe."
},
"commonName": {
"type": "string",
"type": [ "string", "null" ],
"description": "Common name of certificate generated by Zowe."
},
"orgUnit": {
"type": "string",
"type": [ "string", "null" ],
"description": "Organization unit of certificate generated by Zowe."
},
"org": {
"type": "string",
"type": [ "string", "null" ],
"description": "Organization of certificate generated by Zowe."
},
"locality": {
"type": "string",
"type": [ "string", "null" ],
"description": "Locality of certificate generated by Zowe. This is usually the city name."
},
"state": {
"type": "string",
"type": [ "string", "null" ],
"description": "State of certificate generated by Zowe. You can also put province name here."
},
"country": {
"type": "string",
"type": [ "string", "null" ],
"description": "2 letters country code of certificate generated by Zowe."
}
}
Expand Down

0 comments on commit 32cf9d6

Please sign in to comment.