Apache Flink · Schema

SubtaskTimeInfo

SubtaskTimeInfo schema from Apache Flink REST API

ApacheBatch ProcessingBig DataOpen SourceReal-Time AnalyticsStateful ComputingStream Processing

Properties

Name Type Description
duration integer
endpoint string
subtask integer
timestamps object
View JSON Schema on GitHub

JSON Schema

flink-rest-subtask-time-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-flink/refs/heads/main/json-schema/flink-rest-subtask-time-info-schema.json",
  "title": "SubtaskTimeInfo",
  "description": "SubtaskTimeInfo schema from Apache Flink REST API",
  "type": "object",
  "properties": {
    "duration": {
      "type": "integer",
      "format": "int64"
    },
    "endpoint": {
      "type": "string"
    },
    "subtask": {
      "type": "integer",
      "format": "int32"
    },
    "timestamps": {
      "type": "object",
      "additionalProperties": {
        "type": "integer",
        "format": "int64"
      }
    }
  }
}