Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Ranges & Integer Validation In Config Schemas #10117

Open
solonovamax opened this issue Mar 20, 2025 · 0 comments · May be fixed by #10118
Open

Support Ranges & Integer Validation In Config Schemas #10117

solonovamax opened this issue Mar 20, 2025 · 0 comments · May be fixed by #10118

Comments

@solonovamax
Copy link

solonovamax commented Mar 20, 2025

🙋 feature request

Add support config schemas with ranges & restrictions to only integers for config schemas.

🤔 Expected Behavior

The feature would allow specifying optional number properties min and max values for a schema entity of type number for restricting the range, as well as an optional boolean property integer to indicate if it must be an integer (the default, undefined case is the same as false).

😯 Current Behavior

Currently, the config schema only supports declaring a schema with a predefined set of numbers, via the enum property:

export type SchemaNumber = {|
type: 'number',
enum?: Array<number>,
__type?: string,
|};

However, this property is not that useful, as all the possible values must be listed out manually.

💁 Possible Solution

I'm going to open a PR in a few which adds support, because it's not that many lines of change.

🔦 Context

An example usecase is the @parcel/transformer-image plugin:

const JPEG_OUTPUT_SCHEMA: SchemaEntity = {
type: 'object',
properties: {
quality: {
type: 'number',
},
progressive: {
type: 'boolean',
},
chromaSubsampling: {
type: 'string',
},
optimiseCoding: {
type: 'boolean',
},
optimizeCoding: {
type: 'boolean',
},
mozjpeg: {
type: 'boolean',
},
trellisQuantisation: {
type: 'boolean',
},
overshootDeringing: {
type: 'boolean',
},
optimiseScans: {
type: 'boolean',
},
optimizeScans: {
type: 'boolean',
},
quantisationTable: {
type: 'number',
},
quantizationTable: {
type: 'number',
},
force: {
type: 'boolean',
},
},
additionalProperties: true,
};

For many of these properties, there are range restrictions on them. However, there are too many values to realistically list all of them. Take quality for example, it must be in the range of 1-100, however listing all integers from 1 to 100 would be rather tedious.
So, it would be much better if instead it could be specified as the following:

properties: {
  quality: {
    type: 'number',
    min: 1,
    max: 100,
    integer: true,
  },
  ...
}

This would restrict it to only integers in the range of 1-100.

💻 Examples

@solonovamax solonovamax linked a pull request Mar 20, 2025 that will close this issue
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant