Apache Flink · JSON Structure

Flink Rest Job Details Structure

JobDetails schema from Apache Flink REST API

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

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

Properties

duration end-time jid last-modification name pending-operators start-time state tasks

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-details-structure.json",
  "name": "JobDetails",
  "description": "JobDetails schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "duration": {
      "type": "int64"
    },
    "end-time": {
      "type": "int64"
    },
    "jid": {
      "type": "string"
    },
    "last-modification": {
      "type": "int64"
    },
    "name": {
      "type": "string"
    },
    "pending-operators": {
      "type": "int32"
    },
    "start-time": {
      "type": "int64"
    },
    "state": {
      "type": "string"
    },
    "tasks": {
      "type": "object"
    }
  }
}