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