-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
429 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"name": "Type 2", | ||
"otherNames": ["IEC 62196", "Mennekes"], | ||
"current": ["DC", "AC single-phase", "AC three-phase"], | ||
"maxCurrent": 300, | ||
"maxVoltage": 480 | ||
}, | ||
{ | ||
"name": "CCS Combo 2", | ||
"otherNames": ["Combo CSS EU"], | ||
"current": ["DC"], | ||
"maxCurrent": 200, | ||
"maxVoltage": 500 | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://evdb.gaiagreen.tech/api/v1/schema/connectors.json", | ||
"title": "Connectors", | ||
"description": "Power connector types", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"description": "Name of the connector", | ||
"type": "string" | ||
}, | ||
"otherNames": { | ||
"description": "Other names for the connector", | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"uniqueItems": true | ||
}, | ||
"current": { | ||
"description": "Electric power current type", | ||
"items": { | ||
"type": "string", | ||
"enum": ["DC", "AC single-phase", "AC three-phase"] | ||
}, | ||
"uniqueItems": true, | ||
"minItems": 1 | ||
}, | ||
"maxCurrent": { | ||
"description": "Maximum current in amps", | ||
"type": "number" | ||
}, | ||
"maxVoltage": { | ||
"description": "Maximum voltage in volts", | ||
"type": "number" | ||
} | ||
}, | ||
"required": ["name", "current", "maxCurrent", "maxVoltage"] | ||
} | ||
} |
Empty file.
Oops, something went wrong.