Apache Geode · JSON Structure

Geode Rest Region Info Structure

Metadata about a Geode region

Type: object Properties: 4
ApacheCachingData GridDistributed SystemsIn-MemoryOpen Source

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

Properties

name type keyConstraint valueConstraint

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-geode/refs/heads/main/json-structure/geode-rest-region-info-structure.json",
  "name": "RegionInfo",
  "description": "Metadata about a Geode region",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Region name"
    },
    "type": {
      "type": "string",
      "description": "Region type (REPLICATE, PARTITION, etc.)"
    },
    "keyConstraint": {
      "type": "string",
      "description": "Java class constraint for keys, or null"
    },
    "valueConstraint": {
      "type": "string",
      "description": "Java class constraint for values, or null"
    }
  }
}