Remote Grid Code Operation

Description.

Commands to override the gridcode service with a remote gridcode operation.

RemoteGridCodeOperationRequest

Topic: ocpp/gridcode. Used by OCPP and GridOpIO.

type

object

properties

  • id

type

string

format

uuid

  • name

const

remote_grid_code_operation

  • type

const

request

  • data

type

object

properties

  • evse_id

type

string

  • remote_procedure

enum

RemoteOff, RemoteActivePower, RemoteReactivePower

  • set_point

type

number

Example:

{
  "id": "a504f1cd-2ae0-46cf-a93c-736a28723478",
  "name": "remote_grid_code_operation",
  "type": "request",
  "data": {
      "evse_id": "DE*SEV*E123456789",
      "remote_procedure": "RemoteActivePower", # or RemoteOff, "RemoteReactivePower"
      "set_point": 230.0
  }
}

RemoteGridCodeOperationResponse

Topic: gridcode/ocpp. Used by gridcode_service to respond to a GridCodeSettingsRequest

type

object

properties

  • id

type

string

format

uuid

  • name

const

remote_grid_code_operation

  • type

const

response

  • data

type

object

properties

  • evse_id

type

string

  • status

enum

accepted, rejected

Example:

{
  "id": "a504f1cd-2ae0-46cf-a93c-736a28723478",
  "name": "remote_grid_code_operation",
  "type": "response",
  "data": {
      "evse_id": "DE*SEV*E123456789",
      "status": "accepted" # or rejected
  }
}