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

	note over cons, prod
	Precondition: Logging jobs created
	end note
	
	alt Query information about multiple logging jobs
		cons -> prod: GET .../log_jobs
		prod -> cons: 200 OK (LoggingJob[]) 
	else Read information about individual logging job
		cons -> prod: GET .../log_jobs/{logJobId}
		prod -> cons: 200 OK (LoggingJob)
	end
	
@enduml

