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  | 
|||
  | 
type  | 
string  | 
|
format  | 
uuid  | 
||
  | 
const  | 
remote_grid_code_operation  | 
|
  | 
const  | 
request  | 
|
  | 
type  | 
object  | 
|
properties  | 
|||
  | 
type  | 
string  | 
|
  | 
enum  | 
RemoteOff, RemoteActivePower, RemoteReactivePower  | 
|
  | 
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  | 
|||
  | 
type  | 
string  | 
|
format  | 
uuid  | 
||
  | 
const  | 
remote_grid_code_operation  | 
|
  | 
const  | 
response  | 
|
  | 
type  | 
object  | 
|
properties  | 
|||
  | 
type  | 
string  | 
|
  | 
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
  }
}