Orbital · Schema

Orbital Cache

Represents a cache configuration in Orbital, used for caching query results to improve performance. Orbital supports in-memory, Redis, and Hazelcast cache implementations.

DataGateways

Properties

Name Type Description
name string Name of the cache configuration.
type string Cache implementation type.
status string Current status of the cache.
View JSON Schema on GitHub

JSON Schema

cache.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/orbital/refs/heads/main/json-schema/cache.json",
  "title": "Orbital Cache",
  "description": "Represents a cache configuration in Orbital, used for caching query results to improve performance. Orbital supports in-memory, Redis, and Hazelcast cache implementations.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the cache configuration."
    },
    "type": {
      "type": "string",
      "description": "Cache implementation type.",
      "enum": ["IN_MEMORY", "REDIS", "HAZELCAST"]
    },
    "status": {
      "type": "string",
      "description": "Current status of the cache.",
      "enum": ["ACTIVE", "INACTIVE"]
    }
  },
  "required": ["name", "type"]
}