-
Notifications
You must be signed in to change notification settings - Fork 213
adding enumeration to the namespace field; adding enums for deb/rpm #678
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
277eab9
3339c86
b7044de
d175521
3f775d6
3acbfa8
cf00d85
f95bd4a
f7aa78e
5305e70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -162,6 +162,15 @@ | |
| "$ref": "#/definitions/prohibited_requirement" | ||
| } | ||
| ] | ||
| }, | ||
| "valid_values": { | ||
| "title": "Valid values", | ||
|
||
| "description": "Optional set of allowed values for this namespace. If provided, the namespace value MUST be one of these.", | ||
|
||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| }, | ||
| "uniqueItems": true | ||
| } | ||
| }, | ||
| "allOf": [ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need a set of known values rather than a set of valid values. If implementations are validating that they are receiving only the expected values then adding new values (eg adding Linux Mint) is a breaking change.