Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 22 additions & 6 deletions docs/tariffs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -286,13 +286,29 @@ Plugins können weiterhin Daten in stündlichen Intervallen liefern, diese werde

Siehe nachfolgendes Beispiel mit 15-Minuten-Intervallen:

```js
```json
[
{ start: "2025-01-01T00:00:00Z", end: "2025-01-01T00:15:00Z", value: 25.0 },
{ start: "2025-01-01T00:15:00Z", end: "2025-01-01T00:30:00Z", value: 26.5 },
{ start: "2025-01-01T00:30:00Z", end: "2025-01-01T00:45:00Z", value: 24.8 },
{ start: "2025-01-01T00:45:00Z", end: "2025-01-01T01:00:00Z", value: 27.2 },
];
{
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-01T00:15:00Z",
"value": 25.0
},
{
"start": "2025-01-01T00:15:00Z",
"end": "2025-01-01T00:30:00Z",
"value": 26.5
},
{
"start": "2025-01-01T00:30:00Z",
"end": "2025-01-01T00:45:00Z",
"value": 24.8
},
{
"start": "2025-01-01T00:45:00Z",
"end": "2025-01-01T01:00:00Z",
"value": 27.2
}
]
```

Das Plugin wird einmal pro Stunde aktualisiert.
Expand Down
28 changes: 22 additions & 6 deletions docs/tariffs/_dynamischer_strompreis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,29 @@ Plugins können weiterhin Daten in stündlichen Intervallen liefern, diese werde

Siehe nachfolgendes Beispiel mit 15-Minuten-Intervallen:

```js
```json
[
{ start: "2025-01-01T00:00:00Z", end: "2025-01-01T00:15:00Z", value: 25.0 },
{ start: "2025-01-01T00:15:00Z", end: "2025-01-01T00:30:00Z", value: 26.5 },
{ start: "2025-01-01T00:30:00Z", end: "2025-01-01T00:45:00Z", value: 24.8 },
{ start: "2025-01-01T00:45:00Z", end: "2025-01-01T01:00:00Z", value: 27.2 },
];
{
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-01T00:15:00Z",
"value": 25.0
},
{
"start": "2025-01-01T00:15:00Z",
"end": "2025-01-01T00:30:00Z",
"value": 26.5
},
{
"start": "2025-01-01T00:30:00Z",
"end": "2025-01-01T00:45:00Z",
"value": 24.8
},
{
"start": "2025-01-01T00:45:00Z",
"end": "2025-01-01T01:00:00Z",
"value": 27.2
}
]
```

Das Plugin wird einmal pro Stunde aktualisiert.
26 changes: 22 additions & 4 deletions i18n/en/docusaurus-plugin-content-docs/current/tariffs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,29 @@ The plugin must return a JSON structure containing a list of time periods and pr
The date fields must be in the form `YYYY-MM-DDTHH:MM:SSZ` and the price in the correct currency unit (e.g. EUR).
See the following example:

```js
```json
[
{ start: "2025-01-01T00:00:00Z", end: "2025-01-01T01:00:00Z", value: 25.0 },
{ start: "2025-01-01T01:00:00Z", end: "2025-01-01T02:00:00Z", value: 30.0 },
];
{
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-01T00:15:00Z",
"value": 25.0
},
{
"start": "2025-01-01T00:15:00Z",
"end": "2025-01-01T00:30:00Z",
"value": 26.5
},
{
"start": "2025-01-01T00:30:00Z",
"end": "2025-01-01T00:45:00Z",
"value": 24.8
},
{
"start": "2025-01-01T00:45:00Z",
"end": "2025-01-01T01:00:00Z",
"value": 27.2
}
]
```

The plugin is updated once per hour.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,29 @@ The plugin must return a JSON structure containing a list of time periods and pr
The date fields must be in the form `YYYY-MM-DDTHH:MM:SSZ` and the price in the correct currency unit (e.g. EUR).
See the following example:

```js
```json
[
{ start: "2025-01-01T00:00:00Z", end: "2025-01-01T01:00:00Z", value: 25.0 },
{ start: "2025-01-01T01:00:00Z", end: "2025-01-01T02:00:00Z", value: 30.0 },
];
{
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-01T00:15:00Z",
"value": 25.0
},
{
"start": "2025-01-01T00:15:00Z",
"end": "2025-01-01T00:30:00Z",
"value": 26.5
},
{
"start": "2025-01-01T00:30:00Z",
"end": "2025-01-01T00:45:00Z",
"value": 24.8
},
{
"start": "2025-01-01T00:45:00Z",
"end": "2025-01-01T01:00:00Z",
"value": 27.2
}
]
```

The plugin is updated once per hour.