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
feat(input_schema): Allow nullable field default to null (#523)
Solves apify/apify-core#20247
The `default` property should allow `default: null` if field has
`nullable: true`
```
"test": {
"title": "test",
"description": "test",
"type": "integer",
"nullable": true,
"default": null
}
```
Thanks to `unevaluatedProperties` from draft 2019 it's quite easy now
0 commit comments