-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Labels
on-holdIssues that we need to work onIssues that we need to work on
Description
Using a paramater like:
config:
site:
## @param config.site.version [string,nullable] Version of config archive
##
version: nullgives a schema definition of:
"version": {
"type": "string",
"description": "Only valid with source: Nexus. Version of config archive",
"default": "null",
"nullable": true
},which doesn't allow for actual null values.
config.site.version: Invalid type. Expected: string, given: null
if I manually change the schema to:
"version": {
"type": ["string", "null"],
"description": "Only valid with source: Nexus. Version of config archive",
"default": "null",
"nullable": true
},then it seems to work correctly
Metadata
Metadata
Assignees
Labels
on-holdIssues that we need to work onIssues that we need to work on