diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenParameter.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenParameter.java index f90cd3d35d..578b86152e 100644 --- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenParameter.java +++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenParameter.java @@ -76,48 +76,48 @@ public class CodegenParameter implements IJsonSchemaValidationProperties { */ public boolean required; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor17. + * See JSON Schema Validation Spec, Section 6.2.2 */ public String maximum; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor17 + * See JSON Schema Validation Spec, Section 6.2.3 */ public boolean exclusiveMaximum; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor21 + * See JSON Schema Validation Spec, Section 6.2.4 */ public String minimum; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor21 + * See JSON Schema Validation Spec, Section 6.2.5 */ public boolean exclusiveMinimum; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor26 + * See JSON Schema Validation Spec, Section 6.3.1 */ public Integer maxLength; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor29 + * See JSON Schema Validation Spec, Section 6.3.2 */ public Integer minLength; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor33 + * See JSON Schema Validation Spec, Section 6.3.3 */ public String pattern; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor42 + * See JSON Schema Validation Spec, Section 6.4.1 */ public Integer maxItems; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor45 + * See JSON Schema Validation Spec, Section 6.4.2 */ public Integer minItems; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor49 + * See JSON Schema Validation Spec, Section 6.4.3 */ public boolean uniqueItems; private Boolean uniqueItemsBoolean; /** - * See http://json-schema.org/latest/json-schema-validation.html#anchor14 + * See JSON Schema Validation Spec, Section 6.2.1 */ public Number multipleOf; private Integer maxProperties;