diff --git a/schemas/groups/electrical.json b/schemas/groups/electrical.json index f40a08d1..8430deb3 100644 --- a/schemas/groups/electrical.json +++ b/schemas/groups/electrical.json @@ -502,9 +502,9 @@ } } } - }, + }, "chargers": { - "description": "Data about AC sourced battery charger", + "description": "Data about an AC/DC sourced battery charger", "patternProperties": { "(^[A-Za-z0-9]+$)": { "type": "object", @@ -520,6 +520,38 @@ } } }, + "converters": { + "description": "Data about a voltage step up/down DC-DC converter", + "patternProperties": { + "(^[A-Za-z0-9]+$)": { + "type": "object", + "title": "Charger", + "description": "DC-DC converter", + "allOf": [{ + "$ref": "#/definitions/identity" + },{ + "$ref": "#/definitions/dcQualities" + }], + "properties": { + "inputVoltage": { + "description": "Voltage being supplied to the converter", + "$ref": "../definitions.json#/definitions/numberValue", + "units": "V" + }, + "inputCurrent": { + "description": "Amperage being supplied to the converter", + "$ref": "../definitions.json#/definitions/numberValue", + "units": "A" + }, + "inputPower": { + "description": "Power being supplied to the converter", + "$ref": "../definitions.json#/definitions/numberValue", + "units": "W" + } + } + } + } + }, "alternators": { "description": "Data about an Alternator charging device", "patternProperties": {