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

  • iso15118_schema_version

enum

urn:iso:15118:2:2013:MsgDef, urn:iso:std:iso:15118:-20:CommonMessages, urn:din:70121:2012:MsgDef, urn:iso:15118:2:2010:AppProtocol, urn:iso:std:iso:15118:-20:AC, urn:iso:std:iso:15118:-20:DC, urn:iso:std:iso:15118:-20:ACDP, urn:iso:std:iso:15118:-20:WPT

Example:

{
    "id": "2b0aa109-21a1-4f2f-bdbd-6cdf139e7bb1",
    "name": "iso15118_message",
    "type": "update",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "iso15118_schema_version": "urn:iso:15118:2:2013:MsgDef"
            # or urn:iso:std:iso:15118:-20:CommonMessages,
            # urn:din:70121:2012:MsgDef,
            # urn:iso:15118:2:2010:AppProtocol,
            # urn:iso:std:iso:15118:-20:AC,
            # urn:iso:std:iso:15118:-20:DC,
            # urn:iso:std:iso:15118:-20:ACDP,
            # urn:iso:std:iso:15118:-20:WPT
        "exi_payload": "80400280"
        }
}