Apache Geode · Schema

RegionListResponse

Response containing list of all Geode regions

ApacheCachingData GridDistributed SystemsIn-MemoryOpen Source

Properties

Name Type Description
regions array List of region descriptors
View JSON Schema on GitHub

JSON Schema

geode-rest-region-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-region-list-response-schema.json",
  "title": "RegionListResponse",
  "description": "Response containing list of all Geode regions",
  "type": "object",
  "properties": {
    "regions": {
      "type": "array",
      "description": "List of region descriptors",
      "items": {
        "$ref": "#/components/schemas/RegionInfo"
      }
    }
  }
}