{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateManagedCacheAddOnConfig", "title": "CreateManagedCacheAddOnConfig", "description": "Configuration for creating a managed cache add-on.", "type": "object", "properties": { "kind": { "description": "Type of add-on configuration.", "type": "string", "const": "managed-cache.v0" }, "capacity_config": { "$ref": "#/components/schemas/ManagedCacheCapacityConfig" } }, "additionalProperties": false, "required": [ "kind", "capacity_config" ], "x-speakeasy-name-override": "managed_cache" }