{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "twoFactorCode": { "type": "string", "maxLength": 2048 }, "password": { "type": "string", "minLength": 8, "maxLength": 2048 }, "newPassword": { "type": "string", "minLength": 8, "maxLength": 2048 }, "invalidateExistingTokens": { "type": "boolean" } }, "required": [ "password", "newPassword" ], "additionalProperties": false }