Grid Code Settings¶
Description.
Command to modify the grid code service settings
GridCodeSettingsRequest¶
Topic: ocpp/gridcode. Used by OCPP service to initiate a specific GridCode.  | 
||||
type  | 
object  | 
|||
properties  | 
||||
  | 
type  | 
string  | 
||
format  | 
uuid  | 
|||
  | 
const  | 
grid_code_settings  | 
||
  | 
const  | 
request  | 
||
  | 
type  | 
object  | 
||
properties  | 
||||
  | 
type  | 
string  | 
||
  | 
enum  | 
G98, G99, G98_G99, VDE_AR_N_4105, EN_50549_1  | 
||
  | 
enum  | 
ConstantReactivePower, ConstantPowerFactor, PowerFactor(ActivePower), Volt-var, Watt-var  | 
||
  | 
type  | 
array  | 
||
items  | 
type  | 
string  | 
||
enum  | 
ConstantActivePower, LimitActivePower, ActivePower(Freq), Volt-Watt  | 
|||
  | 
type  | 
array  | 
||
items  | 
type  | 
string  | 
||
enum  | 
RemoteOff, RemoteActivePower, RemoteReactivePower  | 
|||
Example:
{
    "id": "fab9e08e-c69e-4567-9278-8f5bb48d46b3",
    "name":"grid_code_settings",
    "type": "request",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "gridcode_id": "G98_G99",
        "reactive_power_function_enabled": "Volt-var",
        "active_power_functions_enabled": ["ConstantActivePower", "Volt-Watt"],
        "remote_procedures_enabled": ["RemoteOff"]
    }
}
GridCodeSettingsResponse¶
Topic: gridcode/ocpp. Used by gridcode_service to respond to a GridCodeSettingsRequest  | 
|||
type  | 
object  | 
||
properties  | 
|||
  | 
type  | 
string  | 
|
format  | 
uuid  | 
||
  | 
const  | 
grid_code_settings  | 
|
  | 
const  | 
response  | 
|
  | 
type  | 
object  | 
|
properties  | 
|||
  | 
type  | 
string  | 
|
  | 
enum  | 
accepted, rejected  | 
|
Example:
{
  "id": "a504f1cd-2ae0-46cf-a93c-736a28723478",
  "name": "grid_code_settings",
  "type": "response",
  "data": {
      "evse_id": "DE*SEV*E123456789",
      "status": "accepted" # or rejected
  }
}