You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
In lib.raml the bindingDefinition annotation type is defined as follows (notice the lack of additionalProperties: false):
annotationTypes:
bindingDefinition:
displayName: BindingDefinition
type: array
items:
properties:
method:
type: string
required: true
description: This field defines to which method the binding applies
enum: ["GET", "PATCH", "POST", "PUT", "DELETE"]
input:
type: string
required: true
description: The binding related to the field when used as an input
enum: ["OPTIONAL", "REQUIRED", "NONE"]
output:
type: string
required: true
description: The binding related to the field when used as an output
enum: ["OPTIONAL", "REQUIRED", "NONE"]
The "invalid" test tries to make it invalid by adding an extra property hi. Without the additionalProperties: false in the definition this seems to be a valid test even though it expects it to be invalid.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In
lib.raml
thebindingDefinition
annotation type is defined as follows (notice the lack ofadditionalProperties: false
):The "invalid" test tries to make it invalid by adding an extra property
hi
. Without theadditionalProperties: false
in the definition this seems to be a valid test even though it expects it to be invalid.The text was updated successfully, but these errors were encountered: