Open Charge Map · Schema

UserComment

A user comment or check-in for a specific charging point (POI/Site)

Electric VehiclesEV ChargingCharging StationsPoints of InterestOpen DataGeospatialTransportationClean EnergyCrowdsourcedRegistry

Properties

Name Type Description
ID string
ChargePointID integer
CommentTypeID integer
CommentType object
UserName string
Comment string
RelatedURL string
DateCreated string
User object
CheckinStatusTypeID integer
CheckinStatusType object
View JSON Schema on GitHub

JSON Schema

UserComment.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://openchargemap.org/schema/UserComment.json",
  "title": "UserComment",
  "type": "object",
  "description": "A user comment or check-in for a specific charging point (POI/Site)",
  "properties": {
    "ID": {
      "type": "string"
    },
    "ChargePointID": {
      "type": "integer"
    },
    "CommentTypeID": {
      "type": "integer"
    },
    "CommentType": {
      "$ref": "#/components/schemas/UserCommentType"
    },
    "UserName": {
      "type": "string"
    },
    "Comment": {
      "type": "string"
    },
    "RelatedURL": {
      "type": "string"
    },
    "DateCreated": {
      "type": "string",
      "format": "date-time"
    },
    "User": {
      "$ref": "#/components/schemas/UserInfo"
    },
    "CheckinStatusTypeID": {
      "type": "integer"
    },
    "CheckinStatusType": {
      "$ref": "#/components/schemas/CheckinStatusType"
    }
  }
}