diff --git a/docs/schemas/cleaned_data_fields.json b/docs/schemas/cleaned_data_fields.json index 735c5f6..1e0891f 100644 --- a/docs/schemas/cleaned_data_fields.json +++ b/docs/schemas/cleaned_data_fields.json @@ -35,11 +35,11 @@ "properties": { "max": { "type": "integer", - "minimum": 10 + "minimum": 1 }, "min": { "type": "integer", - "minimum": 15 + "minimum": 1 } }, "required": ["max", "min"] diff --git a/docs/schemas/cleaned_data_raw_json.json b/docs/schemas/cleaned_data_raw_json.json index cdbe039..6c75e18 100644 --- a/docs/schemas/cleaned_data_raw_json.json +++ b/docs/schemas/cleaned_data_raw_json.json @@ -83,11 +83,11 @@ "properties": { "max": { "type": "integer", - "minimum": 0 + "minimum": 1 }, "min": { "type": "integer", - "minimum": 0 + "minimum": 1 } }, "required": [ diff --git a/docs/schemas/location_main.json b/docs/schemas/location_main.json index c83bfdc..9493a2b 100644 --- a/docs/schemas/location_main.json +++ b/docs/schemas/location_main.json @@ -61,12 +61,12 @@ "properties": { "min": { "type": "number", - "description": "The minimum number.", + "description": "The minimum number. Must be less than or equal to 'max'.", "minimum": 1 }, "max": { "type": "number", - "description": "The maximum number.", + "description": "The maximum number. Must be greater than or equal to 'min'.", "minimum": 1 } },