Open Charge Map · Schema

MediaItem

A user submitted media item related to a specific charge point or site. Currently always an image.

Electric VehiclesEV ChargingCharging StationsPoints of InterestOpen DataGeospatialTransportationClean EnergyCrowdsourcedRegistry

Properties

Name Type Description
ID string
ChargePointID string
ItemURL string
ItemThumbnailURL string
Comment string
IsEnabled boolean
IsVideo boolean
IsFeaturedItem boolean
IsExternalResource boolean
User object
DateCreated string
View JSON Schema on GitHub

JSON Schema

MediaItem.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://openchargemap.org/schema/MediaItem.json",
  "title": "MediaItem",
  "type": "object",
  "description": "A user submitted media item related to a specific charge point or site. Currently always an image.",
  "properties": {
    "ID": {
      "type": "string"
    },
    "ChargePointID": {
      "type": "string"
    },
    "ItemURL": {
      "type": "string"
    },
    "ItemThumbnailURL": {
      "type": "string"
    },
    "Comment": {
      "type": "string"
    },
    "IsEnabled": {
      "type": "boolean"
    },
    "IsVideo": {
      "type": "boolean"
    },
    "IsFeaturedItem": {
      "type": "boolean"
    },
    "IsExternalResource": {
      "type": "boolean"
    },
    "User": {
      "$ref": "#/components/schemas/UserInfo"
    },
    "DateCreated": {
      "type": "string"
    }
  }
}