Skip to content

Commit

Permalink
Fix typos in yaml: minumum -> minimum (#300)
Browse files Browse the repository at this point in the history
Signed-off-by: Holger Rapp <HolgerRapp@gmx.net>
  • Loading branch information
SirVer authored Jul 28, 2023
1 parent db8f866 commit 158ed65
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions types/iso15118_charger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ types:
EVSEPresentVoltage:
description: "[V] Output voltage of the EVSE as defined in IEC CDV 61851-23"
type: number
minumum: 0
minimum: 0
maximum: 1500
EVSEPresentCurrent:
description: "[A] Present output current of the EVSE"
type: number
minumum: 0
minimum: 0
maximum: 10000
DC_EVSEMaximumLimits:
description: Maximum Values (current, power and voltage) the EVSE can deliver
Expand Down
12 changes: 6 additions & 6 deletions types/iso15118_ev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ types:
MaxCurrentLimit:
description: "[A] Maximum current allowed by the EV"
type: number
minumum: 0
minimum: 0
maximum: 1000
MaxPowerLimit:
description: "[W] Maximum power allowed by the EV"
type: number
minumum: 0
minimum: 0
maximum: 500000
MaxVoltageLimit:
description: "[V] Maximum voltage allowed by the EV"
type: number
minumum: 0
minimum: 0
maximum: 1500
EnergyCapacity:
description: "[Wh] Energy capacity of the EV"
type: number
minumum: 0
minimum: 0
maximum: 100000
TargetCurrent:
description: "[A] Target current requested by the EV"
type: number
minumum: 0
minimum: 0
maximum: 1000
TargetVoltage:
description: "[V] Target voltage requested by the EV"
type: number
minumum: 0
minimum: 0
maximum: 1500

0 comments on commit 158ed65

Please sign in to comment.