Apache Geode · Schema

ServerListResponse

Response containing list of Geode cache servers

ApacheCachingData GridDistributed SystemsIn-MemoryOpen Source

Properties

Name Type Description
servers array List of server addresses
View JSON Schema on GitHub

JSON Schema

geode-rest-server-list-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-geode/refs/heads/main/json-schema/geode-rest-server-list-response-schema.json",
  "title": "ServerListResponse",
  "description": "Response containing list of Geode cache servers",
  "type": "object",
  "properties": {
    "servers": {
      "type": "array",
      "description": "List of server addresses",
      "items": {
        "type": "string"
      },
      "example": [
        "localhost:40404",
        "geode-server-02:40404"
      ]
    }
  }
}