json.schema.auth.changePasswordRequest.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/api/auth/changePasswordRequest.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ChangePasswordRequest",
"description": "Change Password Request",
"type": "object",
"javaType": "org.openmetadata.schema.auth.ChangePasswordRequest",
"properties": {
"username" : {
"description": "Name of the user",
"type": "string"
},
"oldPassword": {
"description": "Name that identifies this Custom Metric.",
"type": "string"
},
"newPassword": {
"description": "Name of the column in a table.",
"type": "string"
},
"confirmPassword": {
"description": "Name of the column in a table.",
"type": "string"
},
"requestType": {
"description": "Name of the column in a table.",
"type": "string",
"enum": ["SELF", "USER"],
"default": "SELF"
}
},
"required": ["newPassword", "confirmPassword"],
"additionalProperties": false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy