We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#/definitions/any
#/definitions/any is defined as
azure-pipelines-vscode/service-schema.json
Lines 30 to 46 in 956a7cb
One of the place it is used is to define default value of parameter
default
parameter
Lines 1200 to 1202 in 956a7cb
Default value can also be boolean or number depending upon the type of parameter.
type
Based on current schema, following parameter is invalid, although azure-pipelines.yml supports it.
parameters: - name: myBoolean displayName: myboolean type: boolean default: true
So #/definitions/any should probably be defined as:
"any": { "anyOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "array", "items": { "$ref": "#/definitions/any" } }, { "type": "object", "additionalProperties": true } ] },
The text was updated successfully, but these errors were encountered:
any
The same problem as #566. I'm closing the issue.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
#/definitions/any
is defined asazure-pipelines-vscode/service-schema.json
Lines 30 to 46 in 956a7cb
One of the place it is used is to define
default
value ofparameter
azure-pipelines-vscode/service-schema.json
Lines 1200 to 1202 in 956a7cb
Default value can also be boolean or number depending upon the
type
ofparameter
.Based on current schema, following parameter is invalid, although azure-pipelines.yml supports it.
So
#/definitions/any
should probably be defined as:The text was updated successfully, but these errors were encountered: