Apache Livy · Schema

StatementList

List of statements

Big DataInteractive ComputingOpen SourceRESTSpark

Properties

Name Type Description
total_statements integer
statements array
View JSON Schema on GitHub

JSON Schema

rest-api-statement-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-livy/refs/heads/main/json-schema/rest-api-statement-list-schema.json",
  "title": "StatementList",
  "description": "List of statements",
  "type": "object",
  "properties": {
    "total_statements": {
      "type": "integer",
      "example": 5
    },
    "statements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Statement"
      }
    }
  }
}