CurrentAndNewPasswords schema from WSO2 API Manager
{ "$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" } } }