Apache Geode · Schema

FunctionResult

Results from function execution

ApacheCachingData GridDistributed SystemsIn-MemoryOpen Source

Properties

Name Type Description
result array Function return values
View JSON Schema on GitHub

JSON Schema

geode-rest-function-result-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-result-schema.json",
  "title": "FunctionResult",
  "description": "Results from function execution",
  "type": "object",
  "properties": {
    "result": {
      "type": "array",
      "description": "Function return values",
      "items": {
        "type": "object"
      }
    }
  }
}