Apache Geode · Schema

FunctionListResponse

Response containing list of available functions

ApacheCachingData GridDistributed SystemsIn-MemoryOpen Source

Properties

Name Type Description
functions array List of function IDs
View JSON Schema on GitHub

JSON Schema

geode-rest-function-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-function-list-response-schema.json",
  "title": "FunctionListResponse",
  "description": "Response containing list of available functions",
  "type": "object",
  "properties": {
    "functions": {
      "type": "array",
      "description": "List of function IDs",
      "items": {
        "type": "string"
      },
      "example": [
        "calculateTotals",
        "cleanupExpired"
      ]
    }
  }
}