public withServerUrls(urls: { value: string; type: 'url' | 'regex' | 'hash' }): this {
        this.validation.serverUrls = this.validation.serverUrls ?? [];
        this.validation.serverUrls.push(urls);
        return this;
    }