{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-password-reset-model-schema.json", "title": "PasswordResetModel", "description": "Password reset model", "type": "object", "properties": { "TokenId": { "description": "Token Id", "type": "string", "example": "500123" }, "Email": { "description": "Email address", "type": "string", "example": "owner@example.com" }, "Password": { "description": "Password", "type": "string", "example": "string" }, "PasswordConfirmation": { "description": "Password confirmation", "type": "string", "example": "string" }, "Token": { "description": "Password reset token", "type": "string", "example": "string" } }, "required": [ "Password", "PasswordConfirmation" ] }