public StringMetaData(@JsonProperty("name") String name, @JsonProperty("regex") String mustMatchRegex,
                    @JsonProperty("minLength") Integer minLength, @JsonProperty("maxLength") Integer maxLength) {
        super(name);
        this.regex = mustMatchRegex;
        this.minLength = minLength;