Apache Geode · Schema

QueryListResponse

Response containing list of saved OQL queries

ApacheCachingData GridDistributed SystemsIn-MemoryOpen Source

Properties

Name Type Description
queries array List of saved queries
View JSON Schema on GitHub

JSON Schema

geode-rest-query-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-query-list-response-schema.json",
  "title": "QueryListResponse",
  "description": "Response containing list of saved OQL queries",
  "type": "object",
  "properties": {
    "queries": {
      "type": "array",
      "description": "List of saved queries",
      "items": {
        "$ref": "#/components/schemas/QueryInfo"
      }
    }
  }
}