Open Charge Map · Schema

SupplyType

Indicates the EVSE power supply type e.g. DC (Direct Current), AC (Single Phase), AC (3 Phase).

Electric VehiclesEV ChargingCharging StationsPoints of InterestOpen DataGeospatialTransportationClean EnergyCrowdsourcedRegistry

Properties

Name Type Description
ID integer
Title string
View JSON Schema on GitHub

JSON Schema

SupplyType.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://openchargemap.org/schema/SupplyType.json",
  "title": "SupplyType",
  "type": "object",
  "description": "Indicates the EVSE power supply type e.g. DC (Direct Current), AC (Single Phase), AC (3 Phase).",
  "properties": {
    "ID": {
      "type": "integer",
      "example": 10
    },
    "Title": {
      "type": "string",
      "example": "AC (Single-Phase)"
    }
  },
  "required": [
    "ID"
  ]
}