From 158ed65f58ba1228c59db1bb29eb594eacfb32be Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Fri, 28 Jul 2023 14:03:21 +0200 Subject: [PATCH] Fix typos in yaml: minumum -> minimum (#300) Signed-off-by: Holger Rapp --- types/iso15118_charger.yaml | 4 ++-- types/iso15118_ev.yaml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/types/iso15118_charger.yaml b/types/iso15118_charger.yaml index 308ba1c86..4b7bbc5b0 100644 --- a/types/iso15118_charger.yaml +++ b/types/iso15118_charger.yaml @@ -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 diff --git a/types/iso15118_ev.yaml b/types/iso15118_ev.yaml index 2290472e9..12a68b88b 100644 --- a/types/iso15118_ev.yaml +++ b/types/iso15118_ev.yaml @@ -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