WSO2 · Schema

Current and new passowrd of the user

CurrentAndNewPasswords schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
currentPassword string
newPassword string
View JSON Schema on GitHub

JSON Schema

devportal-api-current-and-new-passwords-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/devportal-api-current-and-new-passwords-schema.json",
  "title": "Current and new passowrd of the user",
  "description": "CurrentAndNewPasswords schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "currentPassword": {
      "type": "string",
      "example": "password123"
    },
    "newPassword": {
      "type": "string",
      "example": "newpassword1234"
    }
  }
}