Link copied

Feature Profile: SmartCharging

Generated from the official OCA JSON schemas for OCPP 1.6 edition 2.
Field names, types, required status, enum values, and constraints are
extracted mechanically. No manual editing applied.

#Messages


#SetChargingProfile

Direction: CS → CP

Install or update a charging profile on a connector.

#SetChargingProfile.req

Field Type Required Constraints Description
connectorId integer Yes
csChargingProfiles object Yes

csChargingProfiles object:

Field Type Required Constraints Description
chargingProfileId integer Yes
chargingProfileKind string (enum) Yes Values: Absolute, Recurring, Relative
chargingProfilePurpose string (enum) Yes Values: ChargePointMaxProfile, TxDefaultProfile, TxProfile
chargingSchedule object Yes

chargingSchedule object:

Field Type Required Constraints Description
chargingRateUnit string (enum) Yes Values: A, W
chargingSchedulePeriod object[] Yes

chargingSchedulePeriod[] items:

Field Type Required Constraints Description
limit number Yes multipleOf: 0.1
startPeriod integer Yes
numberPhases integer No
duration integer No
minChargingRate number No multipleOf: 0.1
startSchedule string (date-time) No
stackLevel integer Yes
recurrencyKind string (enum) No Values: Daily, Weekly
transactionId integer No
validFrom string (date-time) No
validTo string (date-time) No
Example SetChargingProfile.req
{
  "connectorId": 0,
  "csChargingProfiles": {
    "chargingProfileId": 0,
    "chargingProfileKind": "Absolute",
    "chargingProfilePurpose": "ChargePointMaxProfile",
    "chargingSchedule": {
      "chargingRateUnit": "A",
      "chargingSchedulePeriod": [
        {
          "limit": 0.0,
          "startPeriod": 0
        }
      ]
    },
    "stackLevel": 0
  }
}

#SetChargingProfile.conf

Field Type Required Constraints Description
status string (enum) Yes Values: Accepted, Rejected, NotSupported
Example SetChargingProfile.conf
{
  "status": "Accepted"
}

#ClearChargingProfile

Direction: CS → CP

Remove one or more charging profiles.

#ClearChargingProfile.req

Field Type Required Constraints Description
chargingProfilePurpose string (enum) No Values: ChargePointMaxProfile, TxDefaultProfile, TxProfile
connectorId integer No
id integer No
stackLevel integer No
Example ClearChargingProfile.req
{}

#ClearChargingProfile.conf

Field Type Required Constraints Description
status string (enum) Yes Values: Accepted, Unknown
Example ClearChargingProfile.conf
{
  "status": "Accepted"
}

#GetCompositeSchedule

Direction: CS → CP

Request the combined effective charging schedule.

#GetCompositeSchedule.req

Field Type Required Constraints Description
connectorId integer Yes
duration integer Yes
chargingRateUnit string (enum) No Values: A, W
Example GetCompositeSchedule.req
{
  "connectorId": 0,
  "duration": 0
}

#GetCompositeSchedule.conf

Field Type Required Constraints Description
status string (enum) Yes Values: Accepted, Rejected
chargingSchedule object No

chargingSchedule object:

Field Type Required Constraints Description
chargingRateUnit string (enum) Yes Values: A, W
chargingSchedulePeriod object[] Yes

chargingSchedulePeriod[] items:

Field Type Required Constraints Description
limit number Yes multipleOf: 0.1
startPeriod integer Yes
numberPhases integer No
duration integer No
minChargingRate number No multipleOf: 0.1
startSchedule string (date-time) No
connectorId integer No
scheduleStart string (date-time) No
Example GetCompositeSchedule.conf
{
  "status": "Accepted"
}