Apache Livy · JSON Structure

Rest Api Batch List Structure

Paginated list of batch jobs

Type: object Properties: 3
Big DataInteractive ComputingOpen SourceRESTSpark

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

Properties

from total sessions

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

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-livy/refs/heads/main/json-structure/rest-api-batch-list-structure.json",
  "name": "BatchList",
  "description": "Paginated list of batch jobs",
  "properties": {
    "from": {
      "type": "integer",
      "example": 0
    },
    "total": {
      "type": "integer",
      "example": 3
    },
    "sessions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Batch"
      }
    }
  }
}