Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- OAR038 - StandardCreateResponse - Issue message now interpolates the configured `data-property` instead of the hardcoded `data`.
- OAR082 - BinaryOrByteFormat - Issue message now shows the configured `fields-to-apply`.
- OAR085 - OpenAPIVersion - Issue message now shows the configured `valid-versions`.
- OAR037 - StringFormat - Issue message now interpolates the configured `formats-allowed`.
- OAR037 - StringFormat - Fixed false positive on string schemas constrained by `enum`. The check only inspected `format`/`pattern`, so a string with a non-empty `enum` and no `format` was wrongly reported even though the `enum` already constrains the allowed values. When no `format` is declared, a non-empty `enum` now satisfies the rule (like a valid `pattern`); a present-but-invalid `format` still fires even when an `enum` is declared.
- OAR044 - MediaTypeCheck - Media type parameters now follow RFC 9110 (charset without space, other parameter names, multiple parameters); type/subtype can no longer start with `.`.

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/messages/errors.properties
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ OAR081.error=Fields of type password should be string with format password
OAR082.error=The string properties among {0} must define a byte or binary format
OAR083.error=The parameter {0} should not pass through this querystring
OAR084.error=The format {0} should not pass through this querystring
OAR085.error=The OpenAPI version must be one of: {0}
OAR085.error=The OpenAPI version {0} should be one of the allowed by the organization
OAR086.error=Descriptions must begin with a capital letter, end with a period and not be empty
OAR087.error=Summaries must begin with a capital letter, end with a period and not be empty
OAR088.error=The $ref of a parameter must end with the suffix {0}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/messages/errors_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ OAR081.error=Los campos de tipo password deben ser string con formato password
OAR082.error=Las propiedades de tipo string entre {0} deben definir un formato byte o binary
OAR083.error=El parámetro {0} no debe pasar por este querystring
OAR084.error=El formato {0} no debe pasar por este querystring
OAR085.error=La versión del OpenAPI debe ser una de: {0}
OAR085.error=La versión del OpenAPI {0} debe estar entre los permitidos de la organización
OAR086.error=Las descripciones no pueden estar vacías, deben empezar con mayúsculas y terminar con un punto
OAR087.error=Los summary no pueden estar vacíos, deben empezar con mayúsculas y terminar con un punto
OAR088.error=El $ref de un parámetro debe terminar con el sufijo {0}
Expand Down