ISO15118 Message

Description.

Message which contains the raw json of an ISO15118 message, sent from ISO15118 to OCPP for display in the CSMS.

Iso15118MessageUpdate

Topic: iso15118/ocpp. Used to forward ISO15118 messages to OCPP.

type

object

properties

  • id

type

string

  • name

type

string

  • type

const

update

  • data

type

object

properties

  • evse_id

type

string

  • message_type

enum

Request, Response, Error

  • message_name

type

string

  • json_payload

type

object

  • exi_payload

type

string

Example:

{
    "id": "2b0aa109-21a1-4f2f-bdbd-6cdf139e7bb1",
    "name": "iso15118_message",
    "type": "update",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "message_type": "Request"  # or Response, Error
        "message_name": "ServiceDiscoveryReq" . # or SessionSetup, Authorization, etc.
        "json_payload": {
            "V2G_Message": {
                "Header": {
                    "SessionID": "AB77F748BE170806"
                    },
                "Body": {
                    "ServiceDiscoveryReq": {}
                    }
                }
            }
        "exi_payload": "80400280"
        }
}