- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
20 lines
445 B
Plaintext
20 lines
445 B
Plaintext
@startuml
|
|
!theme cerulean
|
|
|
|
participant AGR
|
|
participant DSO
|
|
|
|
loop for each open successfully transmitted FlexOffer to be revoked
|
|
AGR -> DSO: FlexOfferRevocation
|
|
AGR <-- DSO: HTTP OK
|
|
|
|
alt if FlexOfferRevocation is valid
|
|
AGR <- DSO: FlexOfferRevocationResponse Result=Accepted
|
|
AGR --> DSO: HTTP OK
|
|
else
|
|
AGR <- DSO: FlexOfferRevocationResponse Result=Rejected
|
|
AGR --> DSO: HTTP OK
|
|
end
|
|
end
|
|
|
|
@enduml |