{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PasswordCredential",
"type": "object",
"description": "Contains a password credential (client secret) associated with an application or service principal.",
"properties": {
"customKeyIdentifier": {
"type": "['string', 'null']"
},
"displayName": {
"type": "['string', 'null']"
},
"endDateTime": {
"type": "string",
"description": "The date and time at which the password expires."
},
"hint": {
"type": "['string', 'null']",
"description": "Contains the first three characters of the password."
},
"keyId": {
"type": "string"
},
"secretText": {
"type": "['string', 'null']",
"description": "The client secret value. Only returned on creation; not retrievable afterward."
},
"startDateTime": {
"type": "string"
}
}
}