Open Charge Map · Schema

UsageType

The Usage Type of a site indicates the general restrictions on usage.

Electric VehiclesEV ChargingCharging StationsPoints of InterestOpen DataGeospatialTransportationClean EnergyCrowdsourcedRegistry

Properties

Name Type Description
IsPayAtLocation boolean If true, usage requires paying at location
IsMembershipRequired boolean If true, this usage type requires registration or membership with a service.
IsAccessKeyRequired boolean If true this usage required a physical access key
ID integer
Title string
View JSON Schema on GitHub

JSON Schema

UsageType.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://openchargemap.org/schema/UsageType.json",
  "title": "UsageType",
  "type": "object",
  "description": "The Usage Type of a site indicates the general restrictions on usage.",
  "properties": {
    "IsPayAtLocation": {
      "type": "boolean",
      "description": "If true, usage requires paying at location"
    },
    "IsMembershipRequired": {
      "type": "boolean",
      "description": "If true, this usage type requires registration or membership with a service."
    },
    "IsAccessKeyRequired": {
      "type": "boolean",
      "description": "If true this usage required a physical access key",
      "deprecated": true
    },
    "ID": {
      "type": "integer"
    },
    "Title": {
      "type": "string",
      "example": "Public - Membership Required",
      "pattern": "^(.*)$"
    }
  },
  "required": [
    "IsPayAtLocation",
    "IsMembershipRequired",
    "IsAccessKeyRequired",
    "ID"
  ]
}