Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ingest): model - adding a small extension to support communicati… #5429

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ record ExecutionRequestResult {
*/
report: optional string

/**
* A structured report if available.
*/
structuredReport: optional StructuredExecutionReport

/**
* Time at which the request was created
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
namespace com.linkedin.execution

/**
* A flexible carrier for structured results of an execution request.
* The goal is to allow for free flow of structured responses from execution tasks to the orchestrator or observer.
* The full spectrum of different execution report types is not intended to be modeled by this object.
*/

record StructuredExecutionReport {

/**
* The type of the structured report. (e.g. INGESTION_REPORT, TEST_CONNECTION_REPORT, etc.)
*/
type: string

/**
* The serialized value of the structured report
**/
serializedValue: string

/**
* The content-type of the serialized value (e.g. application/json, application/json;gzip etc.)
**/
contentType: string
}