pvforecast: Some values optional. Closes #292 (#293)

* temperature, relativehumidity_2m, windspeed_10m can be null
 * prettify pv_forecast_input_1.json (and add null value)
This commit is contained in:
Dominique Lasserre
2024-12-29 16:43:37 +01:00
parent b386c4be70
commit 267a9bf427
7 changed files with 11687 additions and 13 deletions

View File

@@ -3331,7 +3331,14 @@
"properties": {
"temperature": {
"items": {
"type": "number"
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"type": "array",
"title": "Temperature"
@@ -3462,7 +3469,14 @@
"anyOf": [
{
"items": {
"type": "number"
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"type": "array"
},