@startuml
!include skin.inc
participant "API consumer" as cons
participant "NFV-MANO\nfunctional entity" as prod 

	alt receive notification about availability of performance information
		prod -->> cons: Send PerformanceInformationAvailableNotification\n to the API consumer 
	else read list of available performance reports
		cons -> prod: GET .../pm_jobs/{pmJobId}
		prod->cons: 200 OK (PmJob)
	end

	cons -> prod: GET .../pm_jobs/{pmJobId}/reports/{reportId}
	prod -> cons: 200 OK (PerformanceReport)

@enduml

