Apache Flink · JSON Structure

Flink Rest Job Result Structure

JobResult schema from Apache Flink REST API

Type: object Properties: 6
ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

JobResult is a JSON Structure definition published by Apache Flink, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accumulatorResults applicationStatus jobId netRuntime serializedThrowable success

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-flink/refs/heads/main/json-structure/flink-rest-job-result-structure.json",
  "name": "JobResult",
  "description": "JobResult schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "accumulatorResults": {
      "type": "object"
    },
    "applicationStatus": {
      "type": "string"
    },
    "jobId": {
      "type": "string"
    },
    "netRuntime": {
      "type": "int64"
    },
    "serializedThrowable": {
      "type": "string"
    },
    "success": {
      "type": "boolean"
    }
  }
}